The Implicit grant is one of the OAuth 2.0 grant types supported in ReadyAPI. This grant is similar to the authorization code grant, but instead of using the code as an intermediary, the access token is sent directly through browser redirect.
To learn how to configure OAuth 2.0 authentication in ReadyAPI, see Enabling OAuth 2.0 Authentication or Enabling OAuth 2.0 Authentication with Azure Active Directory.
Option | Description | ||
---|---|---|---|
OAuth 2 Flow | Sets the OAuth 2.0 method to use. | ||
Client Identification | An alphanumeric string used to identify the client. | ||
Response Mode |
(For Azure only) Specifies how the authorization server sends the access token. Available options:
|
||
Resource |
(For Azure only) The App ID URI of the web service.
|
||
Prompt | (For Azure only) Specifies if the authentication server prompts the user to log in or consent even if they are logged in. Possible values:
|
||
Login Hint | (For Azure only) The string displayed as a login hint in the sign-in form. | ||
Domain Hint | (For Azure only) Specifies the domain the user should use to sign in. | ||
Authorization URL | The authorization server URL. | ||
Access Token URL | The URL to get an access token from. | ||
Redirect URL | An authorized redirect URL registered for the application. In OAuth 2.0 terms, the web service redirects you to this URL after successful authentication. To learn more about a redirect URL, see the OAuth 2.0 documentation.
|
||
Scope | The full scope string defining the requested permissions. | ||
Use Nonce | Select to generate a unique string for each request. It allows the server to verify that a request has never been made before and helps prevent replay attacks. | ||
State | The value included in the request that is also added to the token response. Usually, it is used to provide a randomly generated string to prevent a cross-site request forgery attack. | ||
Get Access Token | Click this button to retrieve the access token. | ||
Automation | Click this button to open the Automated Token Profile editor. |
See Also
Authorization Code Grant
Client Credentials Grant
Resource Owner Password Credentials Grant
OAuth 2.0 Grant Types