DGTSession
オブジェクトはDigits認証成功後のユーザーセッションの情報を保持しています。
継承元 | NSObject |
Conforms to | NSCoding |
TWTRAuthSession | |
宣言場所 | DGTSession.h |
DGTSessionA
|
DGTSession
オブジェクトはDigits認証成功後のユーザーセッションの情報を保持しています。
OverviewA |
authToken
プロパティ
authTokenSecret
プロパティ
userID
プロパティ
phoneNumber
プロパティ
– initWithAuthToken:authTokenSecret:userID:phoneNumber:
Tasks
|
Properties |
このセッションの認証トークン。以降のDigits APIへの認証済みリクエストを作成するため、このトークンを保存してください。
@property (nonatomic, copy, readonly) NSString *authToken
DGTSession.h
authTokenThe authorization token for this session. Save this token in order to make future authenticated requests to Digits APIs. @property (nonatomic, copy, readonly) NSString *authToken Declared In
|
このセッションのトークン秘密情報。以降のDigits APIへの認証済みリクエストを作成するため、このトークンを保存してください。
@property (nonatomic, copy, readonly) NSString *authTokenSecret
DGTSession.h
authTokenSecretThe token secret for this session. Save this secret in order to make future authenticated requests to Digits APIs. @property (nonatomic, copy, readonly) NSString *authTokenSecret Declared In
|
頭に国コードが付いた、ユーザーから提供された電話番号(例えば +15554443322
)。
@property (nonatomic, copy, readonly) NSString *phoneNumber
警告: ユーザーがTwitterアカウントを使ってログインしている場合、電話番号は nil
になります(例えば、ユーザーが電話番号でログインするのを難しいと思っている場合など)。
DGTSession.h
phoneNumberThe phone number provided by the user, prefixed by the country code (e.g. @property (nonatomic, copy, readonly) NSString *phoneNumber Discussion
Warning: The phone number is
Declared In
|
認証済みユーザーのユニークID。今後、認証済みユーザーに代わって Digitsにリクエストを作成するためこのIDを保存してください。
@property (nonatomic, copy, readonly) NSString *userID
DGTSession.h
userIDThe unique ID of the authenticated user. Save this ID in order to make future requests to Digits on behalf of the authenticated user. @property (nonatomic, copy, readonly) NSString *userID Declared In
|
あらかじめ用意されたセッション情報を使ってセッションオブジェクトを初期化します。
- (instancetype)initWithAuthToken:(NSString *)authToken authTokenSecret:(NSString *)authTokenSecret userID:(NSString *)userID phoneNumber:(NSString *)phoneNumber
authToken
このセッションの認証トークン。
authTokenSecret
このセッションの認証トークン秘密情報。
userID
このセッションに関連するユーザーのユニークID。
phoneNumber
ユーザーの電話番号。例えば +15554443322
.
設定したパラメータで初期化された DGTSession
オブジェクト。
DGTSession.h
Instance MethodsinitWithAuthToken:authTokenSecret:userID:phoneNumber:Initializes a session object with the provided session details. - (instancetype)initWithAuthToken:(NSString *)authToken authTokenSecret:(NSString *)authTokenSecret userID:(NSString *)userID phoneNumber:(NSString *)phoneNumber ParametersauthToken The authorization token for the session. authTokenSecret The authorization token secret for the session. userID The unique ID for the user associated with the session. phoneNumber
The user’s phone number, e.g.
Return ValueA Declared In
|