Skip to content

Commit b99198c

Browse files
authored
Merge pull request #25751 from github/repo-sync
repo sync
2 parents 826ceb2 + cb390d7 commit b99198c

31 files changed

+121
-49
lines changed
173 KB
Loading
193 KB
Loading

content/apps/creating-github-apps/authenticating-with-a-github-app/about-authentication-with-a-github-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ versions:
88
ghec: '*'
99
topics:
1010
- GitHub Apps
11-
shortTitle: Authentication overview
11+
shortTitle: About authentication
1212
redirect_from:
1313
- /apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps
1414
- /apps/building-github-apps/authentication-options-for-github-apps

content/apps/creating-github-apps/guides/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ topics:
1313
- GitHub Apps
1414
children:
1515
- /quickstart
16-
- /setting-up-your-development-environment-to-create-a-github-app
1716
- /building-a-github-app-that-responds-to-webhook-events
1817
- /building-a-login-with-github-button-with-a-github-app
1918
- /building-a-cli-with-a-github-app
20-
- /using-the-github-api-in-your-app
2119
- /making-authenticated-api-requests-with-a-github-app-in-a-github-actions-workflow
20+
- /setting-up-your-development-environment-to-create-a-github-app
21+
- /using-the-github-api-in-your-app
2222
- /creating-ci-tests-with-the-checks-api
23-
- /migrating-oauth-apps-to-github-apps
2423
---
24+

content/apps/creating-github-apps/setting-up-a-github-app/about-creating-github-apps.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ When building an integration, you should consider using a {% data variables.prod
5353

5454
In general, {% data variables.product.prodname_github_app %}s are preferred over {% data variables.product.prodname_oauth_app %}s.
5555

56+
Both {% data variables.product.prodname_oauth_app %}s and {% data variables.product.prodname_github_app %}s use OAuth 2.0.
57+
58+
{% data variables.product.prodname_oauth_app %}s can only act on behalf of a user while {% data variables.product.prodname_github_app %}s can either act on behalf of a user or independently of a user.
59+
5660
For more information, see "[AUTOTITLE](/apps/oauth-apps/building-oauth-apps/differences-between-github-apps-and-oauth-apps)."
5761

5862
For information on how to migrate an existing {% data variables.product.prodname_oauth_app %} to a {% data variables.product.prodname_github_app %}, see "[AUTOTITLE](/apps/creating-github-apps/guides/migrating-oauth-apps-to-github-apps)."

content/apps/creating-github-apps/setting-up-a-github-app/about-the-user-authorization-callback-url.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ redirect_from:
1515

1616
When you create a {% data variables.product.prodname_github_app %}, you can specify a callback URL. When you use the web application flow to generate a user access token in order to act on behalf of a user, users will be redirected to the callback URL after they authorize the app.
1717

18-
You can specify up to 10 callback URLs. If you specify multiple callback URLs, you can use the `redirect_uri` parameter when you prompt the user to authorize your app, to indicate which callback URL the user should be redirected to. If you do not specify `redirect_uri`, the first callback URL will be used.
18+
You can specify up to 10 callback URLs. If you specify multiple callback URLs, you can use the `redirect_uri` parameter when you prompt the user to authorize your app, to indicate which callback URL the user should be redirected to. If you do not specify `redirect_uri`, the first callback URL will be used. For more information about using the `redirect_uri` parameter, see "[AUTOTITLE](/apps/creating-github-apps/authenticating-with-a-github-app/generating-a-user-access-token-for-a-github-app)".
1919

2020
The callback URL is different from the setup URL. Users are redirected to the setup URL after they install an app. Users are redirected to the callback URL when they authorize an app via the web application flow. For more information, see "[AUTOTITLE](/apps/creating-github-apps/setting-up-a-github-app/about-the-setup-url)."
2121

content/apps/creating-github-apps/setting-up-a-github-app/creating-a-github-app.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Creating a GitHub App
3+
shortTitle: Create a {% data variables.product.prodname_github_app %}
34
intro: 'You can create a {% data variables.product.prodname_github_app %} under your personal account or under any organization you own.'
45
redirect_from:
56
- /early-access/integrations/creating-an-integration

content/apps/creating-github-apps/setting-up-a-github-app/index.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@ topics:
1313
- GitHub Apps
1414
children:
1515
- /about-creating-github-apps
16-
- /rate-limits-for-github-apps
16+
- /migrating-oauth-apps-to-github-apps
17+
- /best-practices-for-creating-a-github-app
1718
- /creating-a-github-app
19+
- /about-the-user-authorization-callback-url
20+
- /about-the-setup-url
1821
- /choosing-permissions-for-a-github-app
1922
- /using-webhooks-with-github-apps
2023
- /making-a-github-app-public-or-private
21-
- /making-your-github-app-available-for-github-enterprise-server
22-
- /creating-a-github-app-from-a-manifest
23-
- /creating-a-github-app-using-url-parameters
24+
- /rate-limits-for-github-apps
2425
- /creating-a-custom-badge-for-your-github-app
25-
- /about-the-user-authorization-callback-url
26-
- /about-the-setup-url
27-
- /best-practices-for-creating-a-github-app
2826
---
2927

content/apps/creating-github-apps/setting-up-a-github-app/making-a-github-app-public-or-private.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ versions:
1717
ghec: '*'
1818
topics:
1919
- GitHub Apps
20-
shortTitle: Manage app visibility
20+
shortTitle: Visibility
2121
---
2222

2323
## About visibility for {% data variables.product.prodname_github_app %}s

content/apps/creating-github-apps/guides/migrating-oauth-apps-to-github-apps.md renamed to content/apps/creating-github-apps/setting-up-a-github-app/migrating-oauth-apps-to-github-apps.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ redirect_from:
55
- /apps/migrating-oauth-apps-to-github-apps
66
- /developers/apps/migrating-oauth-apps-to-github-apps
77
- /developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps
8+
- /apps/creating-github-apps/guides/migrating-oauth-apps-to-github-apps
89
versions:
910
fpt: '*'
1011
ghes: '*'
1112
ghae: '*'
1213
ghec: '*'
1314
topics:
1415
- GitHub Apps
15-
shortTitle: Migrate from {% data variables.product.prodname_oauth_app %}s
16+
shortTitle: 'Migrate from {% data variables.product.prodname_oauth_app %}s'
1617
---
1718

1819
## Benefits of migrating from {% data variables.product.prodname_oauth_app %}s to {% data variables.product.prodname_github_app %}s

0 commit comments

Comments
 (0)