docs/interfaces/auth.TokenExchangeGrantRequest.html
interface TokenExchangeGrantRequest {
client_id?: string;
subject_token: string;
audience?: string;
scope?: string;
user_profile: string;
}
client_id?subject_tokenaudience?scope?user_profile
Optionalclient_idclient_id?: string
Specify this to override the parent class's clientId
subject_token: string
Externally-issued identity artifact, representing the user.
Optionalaudienceaudience?: string
The unique identifier of the target API you want to access.
Optionalscopescope?: string
String value of the different scopes the application is requesting. Multiple scopes are separated with whitespace.
user_profile: string
Optional element used for native iOS interactions for which profile updates can occur. Expected parameter value will be JSON in the form of: { name: { firstName: 'John', lastName: 'Smith }}
Member Visibility
ThemeOSLightDark