Each OAuth2 Client library requires a set of common input parameters.
The following is a list of the parameters you need to configure in your client library configurations.
Set it to your application's sandbox or live url followed by /authorize
path.
Example:
https://YOUR-LOGIN-DOMAIN/authorize
This is the URI to which the user will be forwarded after successfully logging in. Your OAuth2 Client Library will normally handle the rest of the operation.
Client Id should be set to one of the values from your backend API.
Scope should be set to one of the values from your backend API.
It is possible to set more than one scope in this parameter separated by a whitespace. (ie. scopes: profile email
)
Set it to your application's sandbox or live url followed by /token
path.
Example:
https://YOUR-LOGIN-DOMAIN/token
You need to have PKCE enabled in your application's configuration in order for this to work. (Enabled by default)
Set it to your application's sandbox or live url followed by /userinfo
path.