Twitter SDKによって提示されるエラーコード。
宣言場所 | TWTRConstants.h |
TWTRErrorCode ConstantsError codes surfaced by the Twitter SDK.
|
TWTRErrorCode |
typedef NS_ENUM(NSInteger, TWTRErrorCode ) { TWTRErrorCodeUnknown = -1, TWTRErrorCodeNoAuthentication = 0, TWTRErrorCodeNotInitialized = 1, TWTRErrorCodeUserDeclinedPermission = 2, TWTRErrorCodeUserHasNoEmailAddress = 3, TWTRErrorCodeInvalidResourceID = 4, TWTRErrorCodeInvalidURL = 5, };
Definitiontypedef NS_ENUM(NSInteger, TWTRErrorCode ) { TWTRErrorCodeUnknown = -1, TWTRErrorCodeNoAuthentication = 0, TWTRErrorCodeNotInitialized = 1, TWTRErrorCodeUserDeclinedPermission = 2, TWTRErrorCodeUserHasNoEmailAddress = 3, TWTRErrorCodeInvalidResourceID = 4, TWTRErrorCodeInvalidURL = 5, }; |
TWTRErrorCodeUnknown
不明のエラー。
TWTRErrorCodeNoAuthentication
認証がまだ設定されていません。必ず[Twitter logInWithCompletion:]
もしくは[Twitter logInGuestWithCompletion:]
を呼び出さなければなりません。
TWTRErrorCodeNotInitialized
Twitter がまだ初期化されていません。[Fabric with:@[TwitterKit]]
もしくは[Twitter startWithConsumerKey:consumerSecret:]
を呼び出してください。
TWTRErrorCodeUserDeclinedPermission
ユーザーはEメールアドレスなどへのアクセス権の承認を拒否しました。
TWTRErrorCodeUserHasNoEmailAddress
ユーザーはEメールアドレスへのアクセス権を承認しましたが、そのユーザーのアカウントに登録されているアドレスがありません。
TWTRErrorCodeInvalidResourceID
IDを指定してリソースをリクエストしましたが、このIDは見つかりませんでした。
TWTRErrorCodeInvalidURL
無効なURLに対してリクエストが発行されました。
Constants
Unknown error.
Authentication has not been set up yet. You must call
Twitter has not been initialized yet. Call
User has declined to grant permission to information such as their email address.
User has granted permission to their email address but no address is associated with their account.
A resource has been requested by ID, but that ID was not found.
A request has been issued for an invalid URL. |