FBSDKLoginManagerLoginResult
このクラスには新しいバージョンがあります。ご確認ください。 最新バージョン

Describes the result of a login attempt.

Inherits from:NSObject
Declared in:FBSDKLoginManagerLoginResult.h
プロパティ
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.

宣言されたアイテム: 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.

宣言されたアイテム: FBSDKLoginManagerLoginResult.h
isCancelled

Whether the login was cancelled by the user.

@property (readonly, nonatomic) BOOL isCancelled;
宣言されたアイテム: FBSDKLoginManagerLoginResult.h
token

The access token.

@property (copy, nonatomic) FBSDKAccessToken *token;
宣言されたアイテム: FBSDKLoginManagerLoginResult.h
インスタンスメソッド
initWithToken:isCancelled:grantedPermissions:declinedPermissions:

Initializes a new instance.

パラメーター説明
token

The access token

isCancelled

Whether the login was cancelled by the user

grantedPermissions

The set of granted permissions

declinedPermissions

The set of declined permissions

- (instancetype)
initWithToken: (FBSDKAccessToken *)token
isCancelled: (BOOL)isCancelled
grantedPermissions: (NSSet *)grantedPermissions
declinedPermissions: (NSSet *)declinedPermissions
NS_DESIGNATED_INITIALIZER;
宣言されたアイテム: FBSDKLoginManagerLoginResult.h