TWTRGuestSession はTwitter APIで認証されたゲストセッションを表します。 ユーザーセッションについてはTWTRSessionを参照してください。
継承元 | NSObject |
宣言場所 | TWTRSession.h |
TWTRGuestSession Class ReferenceTWTRGuestSession represents a guest session authenticated with the Twitter API. See TWTRSession for user sessions.
|
accessToken
プロパティ
guestToken
プロパティ
initWithSessionDictionary:
init
Tasks
|
ゲスト認証用のベアラーアクセストークン。
@property (nonatomic, copy, readonly) NSString *accessToken
ゲストアクセストークン。
@property (nonatomic, copy, readonly) NSString *guestToken
PropertiesaccessTokenThe bearer access token for guest auth. @property (nonatomic, copy, readonly) NSString *accessToken guestTokenThe guest access token. @property (nonatomic, copy, readonly) NSString *guestToken |
使用できません。代わりに initWithSessionDictionary:
を使用してください。
- (instancetype)init
ディクショナリもしくはディクショナリが見つからない場合はnilから値をコピーして初期化した TWTRGuestSession オブジェクトを戻り値として返します。
- (instancetype)initWithSessionDictionary: (NSDictionary *)sessionDictionary
sessionDictionary
Twitterゲスト専用認証の認証が成功した後に受け取るディクショナリ。
Instance MethodsinitUnavailable. Use - (instancetype)init initWithSessionDictionaryReturns an TWTRGuestSession object initialized by copying the values from the dictionary or nil if the dictionary is missing. - (instancetype)initWithSessionDictionary: (NSDictionary *)sessionDictionary ParameterssessionDictionary The dictionary received after successful authentication from Twitter guest-only authentication. |