hank
2018-08-30 9f077bbd393b5c47afbbfd83454f6a08a6345dbd
frameworks/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h
@@ -60,6 +60,12 @@
 */
FBSDK_EXTERN NSString *const FBSDKAccessTokenChangeNewKey;
/*
 A key in the notification's userInfo that will be set
 if and only if the token has expired.
 */
FBSDK_EXTERN NSString *const FBSDKAccessTokenDidExpire;
/**
  Represents an immutable access token for using Facebook services.
@@ -100,6 +106,11 @@
  Returns the user ID.
 */
@property (readonly, copy, nonatomic) NSString *userID;
/**
 Returns whether the access token is expired by checking its expirationDate property
 */
@property (readonly, assign, nonatomic, getter = isExpired) BOOL expired;
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
@@ -151,6 +162,12 @@
+ (FBSDKAccessToken *)currentAccessToken;
/**
 Returns YES if currentAccessToken is not nil AND currentAccessToken is not expired
 */
+ (BOOL)currentAccessTokenIsActive;
/**
  Sets the "global" access token that represents the currently logged in user.
 - Parameter token: The access token to set.