SkyVaultOAuthData
This section describes the SkyVaultOAuthData class.
The SkyVaultOAuthData class exposes properties for OAuth data.
Class declaration
@interface SkyVaultOAuthData : NSObject
Properties
Property | Description |
---|---|
@property (nonatomic, strong, readonly) NSString *accessToken | Returns the access token that can be used to make requests. |
@property (nonatomic, strong, readonly) NSString *refreshToken | Returns the refresh token that can be used to get a new access token. |
@property (nonatomic, strong, readonly) NSNumber *expiresIn | Returns the expiry time. The number of seconds the access token will be valid for. SkyVault will issue access tokens valid for one hour. |
@property (nonatomic, strong, readonly) NSString *tokenType | Returns the tokenType. |
@property (nonatomic, strong, readonly) NSString *scope | Returns the scope. |
@property (nonatomic, strong, readonly) NSString *apiKey | Returns the API key. |
@property (nonatomic, strong, readonly) NSString *secretKey | Returns the API secret. |
@property (nonatomic, strong, readonly) NSString *redirectURI | Returns the redirect URI. |