FBAccessTokenData
คลาสนี้ไม่มีให้ใช้งานใน SDK เวอร์ชั่นล่าสุดอีกต่อไป
เวอร์ชั่นที่ใหม่กว่าของคลาสนี้พร้อมแล้ว ตรวจสอบได้ เวอร์ชั่นล่าสุด

Represents an access token used for the Facebook login flow and includes associated metadata such as expiration date and permissions. You should use factory methods (createToken...) to construct instances and should be treated as immutable.

Discussion:

For more information, see https://developers.facebook.com/docs/concepts/login/access-tokens-and-types/.

Conforms to:NSCopying
Inherits from:NSObject
Declared in:FBAccessTokenData.h
ทรัพย์สิน
accessToken

Returns the access token NSString.

@property (readonly, nonatomic, copy) NSString *accessToken;
ให้คำรับรองไว้ใน: FBAccessTokenData.h
expirationDate

Returns the expiration date of the access token.

@property (readonly, nonatomic, copy) NSDate *expirationDate;
ให้คำรับรองไว้ใน: FBAccessTokenData.h
loginType

Returns the login type associated with the token.

@property (readonly, nonatomic) FBSessionLoginType loginType;
ให้คำรับรองไว้ใน: FBAccessTokenData.h
permissions

Returns the permissions associated with the access token.

@property (readonly, nonatomic, copy) NSArray *permissions;
ให้คำรับรองไว้ใน: FBAccessTokenData.h
refreshDate

Returns the date the token was last refreshed.

@property (readonly, nonatomic, copy) NSDate *refreshDate;
ให้คำรับรองไว้ใน: FBAccessTokenData.h
วิธีการคลาส
createTokenFromDictionary:

Creates an FBAccessTokenData from a dictionary or returns nil if required data is missing.

พารามิเตอร์คำอธิบาย
dictionary

The dictionary with FBSessionTokenCachingStrategy keys.

+ (FBAccessTokenData *) createTokenFromDictionary:(NSDictionary *)dictionary;
ให้คำรับรองไว้ใน: FBAccessTokenData.h
createTokenFromFacebookURL:appID:urlSchemeSuffix:

Creates an FBAccessTokenData from an App Link provided by the Facebook application or nil if the url is not valid.

พารามิเตอร์คำอธิบาย
url

The url provided.

appID

Needed in order to verify URL format.

urlSchemeSuffix

Needed in order to verify URL format.

+ (FBAccessTokenData *)
createTokenFromFacebookURL: (NSURL *)url
appID: (NSString *)appID
urlSchemeSuffix: (NSString *)urlSchemeSuffix;
ให้คำรับรองไว้ใน: FBAccessTokenData.h
createTokenFromString:permissions:expirationDate:loginType:refreshDate:

Creates an FBAccessTokenData from existing information or returns nil if required data is missing.

พารามิเตอร์คำอธิบาย
accessToken

The token string. If nil or empty, this method will return nil.

permissions

The permissions set. A value of nil indicates basic permissions.

expirationDate

The expiration date. A value of nil defaults to [NSDate distantFuture].

loginType

The login source of the token.

refreshDate

The date that token was last refreshed. A value of nil defaults to [NSDate date].

+ (FBAccessTokenData *)
createTokenFromString: (NSString *)accessToken
permissions: (NSArray *)permissions
expirationDate: (NSDate *)expirationDate
loginType: (FBSessionLoginType)loginType
refreshDate: (NSDate *)refreshDate;
ให้คำรับรองไว้ใน: FBAccessTokenData.h
วิธีการทันใจ
dictionary

Returns a dictionary representation of this instance.

- (NSMutableDictionary *) dictionary;
Discussion:

This is provided for backwards compatibility with previous access token related APIs that used a NSDictionary (see FBSessionTokenCachingStrategy).

ให้คำรับรองไว้ใน: FBAccessTokenData.h
isEqualToAccessTokenData:

Returns a Boolean value that indicates whether a given object is an FBAccessTokenData object and exactly equal the receiver.

พารามิเตอร์คำอธิบาย
accessTokenData

The data to compare to the receiver.

- (BOOL) isEqualToAccessTokenData:(FBAccessTokenData *)accessTokenData;
ให้คำรับรองไว้ใน: FBAccessTokenData.h