Interface OAuthFlow
- All Superinterfaces:
OpenAPIObject
Represents an OAuth Flow Object (the configuration).
-
Method Summary
Modifier and TypeMethodDescriptionThe authorization URL to be used for this flow.The URL to be used for obtaining refresh tokens.The available scopes for the OAuth2 security scheme.The token URL to be used for this flow.Methods inherited from interface OpenAPIObject
getExtensions, getOpenAPIModel
-
Method Details
-
getAuthorizationUrl
String getAuthorizationUrl()The authorization URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. -
getTokenUrl
String getTokenUrl()The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. -
getRefreshUrl
String getRefreshUrl()The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. -
getScopes
-