diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-07-16 21:09:41 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-07-16 21:09:41 +0000 |
commit | b7f59cf951f4610ff712358f1675183989fb5d2a (patch) | |
tree | 113ff1e7cf73ab562d8e03296a67e934b2c906fd /doc/api/oauth2.md | |
parent | 5bbf6dbe3cb42f126ac53558e6fa38e4e9f4ca5d (diff) | |
download | gitlab-ce-b7f59cf951f4610ff712358f1675183989fb5d2a.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/oauth2.md')
-rw-r--r-- | doc/api/oauth2.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/oauth2.md b/doc/api/oauth2.md index f5c75aac0d9..1b06e554e5e 100644 --- a/doc/api/oauth2.md +++ b/doc/api/oauth2.md @@ -218,7 +218,7 @@ https://gitlab.example.com/oauth/authorize?client_id=APP_ID&redirect_uri=REDIREC This prompts the user to approve the applications access to their account based on the scopes specified in `REQUESTED_SCOPES` and then redirect back to the `REDIRECT_URI` you provided. The [scope parameter](https://github.com/doorkeeper-gem/doorkeeper/wiki/Using-Scopes#requesting-particular-scopes) - is a space separated list of scopes you want to have access to (e.g. `scope=read_user+profile` + is a space separated list of scopes you want to have access to (for example, `scope=read_user+profile` would request `read_user` and `profile` scopes). The redirect includes a fragment with `access_token` as well as token details in GET parameters, for example: |