Inherits from NSObject
Declared in FBSDKLoginManagerLoginResult.h

Overview

Describes the result of a login attempt.

Properties

declinedPermissions

the set of permissions declined by the user in the associated request.

@property (copy, nonatomic) NSSet *declinedPermissions

Discussion

inspect the token’s permissions set for a complete list.

Declared In

FBSDKLoginManagerLoginResult.h

grantedPermissions

the set of permissions granted by the user in the associated request.

@property (copy, nonatomic) NSSet *grantedPermissions

Discussion

inspect the token’s permissions set for a complete list.

Declared In

FBSDKLoginManagerLoginResult.h

isCancelled

whether the login was cancelled by the user.

@property (readonly, nonatomic) BOOL isCancelled

Declared In

FBSDKLoginManagerLoginResult.h

token

the access token.

@property (copy, nonatomic) FBSDKAccessToken *token

Declared In

FBSDKLoginManagerLoginResult.h

Instance Methods

initWithToken:isCancelled:grantedPermissions:declinedPermissions:

Initializes a new instance. - Parameter token: the access token - Parameter isCancelled: whether the login was cancelled by the user - Parameter grantedPermissions: the set of granted permissions - Parameter declinedPermissions: the set of declined permissions

- (instancetype)initWithToken:(FBSDKAccessToken *)token isCancelled:(BOOL)isCancelled grantedPermissions:(NSSet *)grantedPermissions declinedPermissions:(NSSet *)declinedPermissions

Declared In

FBSDKLoginManagerLoginResult.h