diff options
author | Mehdy Khoshnoody <mehdy.khoshnoody@gmail.com> | 2016-12-19 11:33:55 +0000 |
---|---|---|
committer | Mehdy Khoshnoody <mehdy.khoshnoody@gmail.com> | 2016-12-19 11:33:55 +0000 |
commit | effc6c1703dd397726fefcc930c89c76e0dc4455 (patch) | |
tree | 39fbb927522ea02bdfa310ab46a6c2d0c02cd7c0 | |
parent | a50cd9eb4b4392004e47e57b2fa37c12def5827f (diff) | |
download | gitlab-ce-effc6c1703dd397726fefcc930c89c76e0dc4455.tar.gz |
oauth2.md: should use the provider's URL which is gitlab.example.com
-rw-r--r-- | doc/api/oauth2.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/oauth2.md b/doc/api/oauth2.md index 5ef5e3f5744..eab532af594 100644 --- a/doc/api/oauth2.md +++ b/doc/api/oauth2.md @@ -57,7 +57,7 @@ Once you have the authorization code you can request an `access_token` using the ``` parameters = 'client_id=APP_ID&client_secret=APP_SECRET&code=RETURNED_CODE&grant_type=authorization_code&redirect_uri=REDIRECT_URI' -RestClient.post 'http://localhost:3000/oauth/token', parameters +RestClient.post 'http://gitlab.example.com/oauth/token', parameters # The response will be { @@ -77,13 +77,13 @@ You can now make requests to the API with the access token returned. The access token allows you to make requests to the API on a behalf of a user. ``` -GET https://localhost:3000/api/v3/user?access_token=OAUTH-TOKEN +GET https://gitlab.example.com/api/v3/user?access_token=OAUTH-TOKEN ``` Or you can put the token to the Authorization header: ``` -curl --header "Authorization: Bearer OAUTH-TOKEN" https://localhost:3000/api/v3/user +curl --header "Authorization: Bearer OAUTH-TOKEN" https://gitlab.example.com/api/v3/user ``` ## Resource Owner Password Credentials |