Go to the documentation of this file.
19 #import <Foundation/Foundation.h>
23 NS_ASSUME_NONNULL_BEGIN
40 @property(nonatomic, readonly, nullable) NSString *
accessToken;
56 @property(nonatomic, readonly, nullable) NSString *
tokenType;
71 @property(nonatomic, readonly, nullable) NSString *
idToken;
85 @property(nonatomic, readonly, nullable) NSString *
scope;
89 @property(nonatomic, readonly, nullable)
95 - (instancetype)init NS_UNAVAILABLE;
105 parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters
106 NS_DESIGNATED_INITIALIZER;
110 NS_ASSUME_NONNULL_END
NSString * scope
The scope of the access token. OPTIONAL, if identical to the scopes requested, otherwise,...
Definition: OIDTokenResponse.h:85
NSDate * accessTokenExpirationDate
The approximate expiration date & time of the access token.
Definition: OIDTokenResponse.h:48
NSString * refreshToken
The refresh token, which can be used to obtain new access tokens using the same authorization grant.
Definition: OIDTokenResponse.h:78
NSString * idToken
ID Token value associated with the authenticated session. Always present for the authorization code g...
Definition: OIDTokenResponse.h:71
NSString * accessToken
The access token generated by the authorization server.
Definition: OIDTokenResponse.h:40
NSString * tokenType
Typically "Bearer" when present. Otherwise, another token_type value that the Client has negotiated w...
Definition: OIDTokenResponse.h:56
Represents a token request.
Definition: OIDTokenRequest.h:34
OIDTokenRequest * request
The request which was serviced.
Definition: OIDTokenResponse.h:33
NSDictionary< NSString *, NSObject< NSCopying > * > * additionalParameters
Additional parameters returned from the token server.
Definition: OIDTokenResponse.h:90
Represents the response to an token request.
Definition: OIDTokenResponse.h:29