This will ask the user to approve the applications access to their account
This page asks the user to approve the request from the app to access their
based on the scopes specified in `REQUESTED_SCOPES` and then redirect back to
account based on the scopes specified in `REQUESTED_SCOPES`. The user is then
the `REDIRECT_URI` you provided. The [scope parameter](https://github.com/doorkeeper-gem/doorkeeper/wiki/Using-Scopes#requesting-particular-scopes)
redirected back to the specified `REDIRECT_URI`. 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 associated with the user.
would request `read_user` and `profile` scopes). The redirect will
For example,`scope=read_user+profile` requests the `read_user` and `profile` scopes.
include the GET `code` parameter, for example:
The redirect includes the authorization `code`, for example: