lpw
2022-02-15 2e29a3a585524a054640bb6e7bdf26fe77ba1f17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 * All rights reserved.
 *
 * This source code is licensed under the license found in the
 * LICENSE file in the root directory of this source tree.
 */
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
NS_SWIFT_NAME(AuthenticationTokenClaims)
@interface FBSDKAuthenticationTokenClaims : NSObject
 
/// A unique identifier for the token.
@property (nonatomic, readonly, strong) NSString *jti;
 
/// Issuer Identifier for the Issuer of the response.
@property (nonatomic, readonly, strong) NSString *iss;
 
/// Audience(s) that this ID Token is intended for.
@property (nonatomic, readonly, strong) NSString *aud;
 
/// String value used to associate a Client session with an ID Token, and to mitigate replay attacks.
@property (nonatomic, readonly, strong) NSString *nonce;
 
/// Expiration time on or after which the ID Token MUST NOT be accepted for processing.
@property (nonatomic, readonly, assign) NSTimeInterval exp;
 
/// Time at which the JWT was issued.
@property (nonatomic, readonly, assign) NSTimeInterval iat;
 
/// Subject - Identifier for the End-User at the Issuer.
@property (nonatomic, readonly, strong) NSString *sub;
 
/// End-User's full name in displayable form including all name parts.
@property (nullable, nonatomic, readonly, strong) NSString *name;
 
/// End-User's given name in displayable form
@property (nullable, nonatomic, readonly, strong) NSString *givenName;
 
/// End-User's middle name in displayable form
@property (nullable, nonatomic, readonly, strong) NSString *middleName;
 
/// End-User's family name in displayable form
@property (nullable, nonatomic, readonly, strong) NSString *familyName;
 
/**
 End-User's preferred e-mail address.
 
 IMPORTANT: This field will only be populated if your user has granted your application the 'email' permission.
 */
@property (nullable, nonatomic, readonly, strong) NSString *email;
 
/// URL of the End-User's profile picture.
@property (nullable, nonatomic, readonly, strong) NSString *picture;
 
/**
 End-User's friends.
 
 IMPORTANT: This field will only be populated if your user has granted your application the 'user_friends' permission.
 */
@property (nullable, nonatomic, readonly, strong) NSArray<NSString *> *userFriends;
 
/// End-User's birthday
@property (nullable, nonatomic, readonly, strong) NSString *userBirthday;
 
/// End-User's age range
@property (nullable, nonatomic, readonly, strong) NSDictionary<NSString *, NSNumber *> *userAgeRange;
 
/// End-User's hometown
@property (nullable, nonatomic, readonly, strong) NSDictionary<NSString *, NSString *> *userHometown;
 
/// End-User's location
@property (nullable, nonatomic, readonly, strong) NSDictionary<NSString *, NSString *> *userLocation;
 
/// End-User's gender
@property (nullable, nonatomic, readonly, strong) NSString *userGender;
 
/// End-User's link
@property (nullable, nonatomic, readonly, strong) NSString *userLink;
 
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
 
@end
 
NS_ASSUME_NONNULL_END