Skip to content

Commit 3db443e

Browse files
committed
Merge pull request github#764 from github/jonrohan-patch-1
Changes to personal access tokens urls and dev apps urls
2 parents 161cb3c + 61d723d commit 3db443e

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

content/changes/2013-09-03-two-factor-authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ providing multiple options to make the flow simple and easy.
2626
### Personal Access Tokens
2727

2828
Personal access tokens provide the simplest option for using 2FA with Basic
29-
Authentication. You can create these tokens via the [application settings page
30-
on GitHub.com](https://github.com/settings/applications), and you can revoke
29+
Authentication. You can create these tokens via the [tokens settings page
30+
on GitHub.com](https://github.com/settings/tokens), and you can revoke
3131
them at any time. For more information about authenticating to the API with
3232
personal access tokens, be sure to check out our [help article on the
3333
topic][personal-access-tokens].

content/guides/basics-of-authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,4 +351,4 @@ available as a separate project.
351351
[check token valid]: /v3/oauth_authorizations/#check-an-authorization
352352
[platform samples]: https://github.com/github/platform-samples/tree/master/api/ruby/basics-of-authentication
353353
[new oauth app]: https://github.com/settings/applications/new
354-
[app settings]: https://github.com/settings/applications
354+
[app settings]: https://github.com/settings/developers

content/guides/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ redirects the user back to the application:
188188

189189
However, you don't need to set up the entire web flow to begin working with OAuth tokens.
190190
An easier way to get a token is to [create a **personal access token**][personal token] via your
191-
[Application settings page][application settings]:
191+
[Personal access tokens settings page][tokens settings]:
192192

193193
![Personal Token selection](/images/personal_token.png)
194194

@@ -541,7 +541,7 @@ Keep learning with the next API guide [Basics of Authentication][auth guide]!
541541
[2fa header]: /v3/auth/#working-with-two-factor-authentication
542542
[oauth section]: /guides/getting-started/#oauth
543543
[personal token]: https://help.github.com/articles/creating-an-access-token-for-command-line-use
544-
[application settings]: https://github.com/settings/applications
544+
[tokens settings]: https://github.com/settings/tokens
545545
[pagination]: /v3/#pagination
546546
[get repo]: /v3/repos/#get
547547
[create repo]: /v3/repos/#create

content/v3/auth.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ Because these authentication codes expire quickly, we recommend using the
6565
Authorizations API to [create an access token][create-access] and using that
6666
token to [authenticate via OAuth][oauth-auth] for most API access.
6767

68-
Alternately, you can create access tokens from the Personal Access Token
69-
section of your [application settings page](https://github.com/settings/applications).
68+
Alternately, you can create access tokens from the Personal Access Token [settings page](https://github.com/settings/tokens).
7069

7170
[create-access]: /v3/oauth_authorizations/#create-a-new-authorization
7271
[curl]: http://curl.haxx.se/

content/v3/oauth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,6 @@ user, be sure to check out our [guide][resource-discovery-guide].
323323
[deployments]: /v3/repos/deployments
324324
[public keys]: /v3/users/keys/
325325
[authorized-apps]: https://github.com/settings/applications#authorized
326-
[owned-apps]: https://github.com/settings/applications
326+
[owned-apps]: https://github.com/settings/developers
327327
[org-app-policies]: /changes/2015-01-19-an-integrators-guide-to-organization-application-policies/
328328
[resource-discovery-guide]: /guides/discovering-resources-for-a-user/

content/v3/oauth_authorizations.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ can be cumbersome. Instead, tokens can be created using the OAuth Authorizations
6666
[Basic Authentication](/v3/auth#basic-authentication). To create tokens for a particular OAuth application, you
6767
must provide its client ID and secret, found on the OAuth application settings
6868
page, linked from your [OAuth applications listing on GitHub][app-listing]. If your OAuth application intends to create multiple tokens for one user you should use `fingerprint` to differentiate between them. OAuth tokens
69-
can also be created through the web UI via the [Application settings page][app-listing].
69+
can also be created through the web UI via the [Personal access tokens settings][tokens-listing].
7070
Read more about these tokens on the [GitHub Help page](https://help.github.com/articles/creating-an-access-token-for-command-line-use).
7171

7272
POST /authorizations
@@ -265,5 +265,6 @@ links that might be of help:
265265
* [Ruby Sinatra extension](https://github.com/atmos/sinatra_auth_github)
266266
* [Ruby Warden strategy](https://github.com/atmos/warden-github)
267267

268-
[app-listing]: https://github.com/settings/applications
268+
[app-listing]: https://github.com/settings/developers
269+
[tokens-listing]: https://github.com/settings/tokens
269270
[basics auth guide]: /guides/basics-of-authentication/

0 commit comments

Comments
 (0)