commit | author | age
|
bad748
|
1 |
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. |
W |
2 |
// |
|
3 |
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, |
|
4 |
// copy, modify, and distribute this software in source code or binary form for use |
|
5 |
// in connection with the web services and APIs provided by Facebook. |
|
6 |
// |
|
7 |
// As with any software that integrates with the Facebook platform, your use of |
|
8 |
// this software is subject to the Facebook Developer Principles and Policies |
|
9 |
// [http://developers.facebook.com/policy/]. This copyright notice shall be |
|
10 |
// included in all copies or substantial portions of the software. |
|
11 |
// |
|
12 |
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
13 |
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
|
14 |
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
|
15 |
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
|
16 |
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
|
17 |
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
18 |
|
|
19 |
#import <Foundation/Foundation.h> |
|
20 |
|
|
21 |
#import <FBSDKCoreKit/FBSDKMacros.h> |
|
22 |
|
|
23 |
/*! |
|
24 |
@abstract The error domain for all errors from FBSDKLoginKit |
|
25 |
@discussion Error codes from the SDK in the range 300-399 are reserved for this domain. |
|
26 |
*/ |
|
27 |
FBSDK_EXTERN NSString *const FBSDKLoginErrorDomain; |
|
28 |
|
|
29 |
/*! |
|
30 |
@typedef NS_ENUM(NSInteger, FBSDKLoginErrorCode) |
|
31 |
@abstract Error codes for FBSDKLoginErrorDomain. |
|
32 |
*/ |
|
33 |
typedef NS_ENUM(NSInteger, FBSDKLoginErrorCode) |
|
34 |
{ |
|
35 |
/*! |
|
36 |
@abstract Reserved. |
|
37 |
*/ |
|
38 |
FBSDKLoginReservedErrorCode = 300, |
|
39 |
/*! |
|
40 |
@abstract The error code for unknown errors. |
|
41 |
*/ |
|
42 |
FBSDKLoginUnknownErrorCode, |
|
43 |
|
|
44 |
/*! |
|
45 |
@abstract The user's password has changed and must log in again |
|
46 |
*/ |
|
47 |
FBSDKLoginPasswordChangedErrorCode, |
|
48 |
/*! |
|
49 |
@abstract The user must log in to their account on www.facebook.com to restore access |
|
50 |
*/ |
|
51 |
FBSDKLoginUserCheckpointedErrorCode, |
|
52 |
/*! |
|
53 |
@abstract Indicates a failure to request new permissions because the user has changed. |
|
54 |
*/ |
|
55 |
FBSDKLoginUserMismatchErrorCode, |
|
56 |
/*! |
|
57 |
@abstract The user must confirm their account with Facebook before logging in |
|
58 |
*/ |
|
59 |
FBSDKLoginUnconfirmedUserErrorCode, |
|
60 |
|
|
61 |
/*! |
|
62 |
@abstract The Accounts framework failed without returning an error, indicating the |
|
63 |
app's slider in the iOS Facebook Settings (device Settings -> Facebook -> App Name) has |
|
64 |
been disabled. |
|
65 |
*/ |
|
66 |
FBSDKLoginSystemAccountAppDisabledErrorCode, |
|
67 |
/*! |
|
68 |
@abstract An error occurred related to Facebook system Account store |
|
69 |
*/ |
|
70 |
FBSDKLoginSystemAccountUnavailableErrorCode, |
|
71 |
/*! |
|
72 |
@abstract The login response was missing a valid challenge string. |
|
73 |
*/ |
|
74 |
FBSDKLoginBadChallengeString, |
|
75 |
}; |