| | |
| | | */ |
| | | - (void)reloadSessionStore; |
| | | |
| | | /** |
| | | * Sets a local string which can be used to verify the auth token using |
| | | * isValidOauthToken: |
| | | */ |
| | | - (void)saveOauthToken:(NSString *)token; |
| | | |
| | | /** |
| | | * If saveOauthToken is called then this will compare the set to the token passed by the token parameter. |
| | | * This is used to verify the token generated from the oauth/request_token request after a URL has been passed |
| | | * back from web authenticatoin. |
| | | * |
| | | * Returns YES is the token string matches the internal OAuth token. |
| | | */ |
| | | - (BOOL)isValidOauthToken:(NSString *)token; |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |