| | |
| | | |
| | | #import "FBSDKProfilePictureView.h" |
| | | |
| | | @class FBSDKAuthenticationTokenClaims; |
| | | @class FBSDKProfile; |
| | | @class FBSDKUserAgeRange; |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | |
| | | NS_SWIFT_NAME(ProfileBlock); |
| | | |
| | | /** |
| | | Represents the unique identifier for an end user |
| | | */ |
| | | typedef NSString FBSDKUserIdentifier |
| | | NS_SWIFT_NAME(UserIdentifier); |
| | | |
| | | /** |
| | | Represents an immutable Facebook profile |
| | | |
| | | This class provides a global "currentProfile" instance to more easily |
| | |
| | | @param linkURL the link for this profile |
| | | @param refreshDate the optional date this profile was fetched. Defaults to [NSDate date]. |
| | | */ |
| | | - (instancetype)initWithUserID:(NSString *)userID |
| | | - (instancetype)initWithUserID:(FBSDKUserIdentifier *)userID |
| | | firstName:(nullable NSString *)firstName |
| | | middleName:(nullable NSString *)middleName |
| | | lastName:(nullable NSString *)lastName |
| | | name:(nullable NSString *)name |
| | | linkURL:(nullable NSURL *)linkURL |
| | | refreshDate:(nullable NSDate *)refreshDate NS_DESIGNATED_INITIALIZER; |
| | | refreshDate:(nullable NSDate *)refreshDate; |
| | | |
| | | /** |
| | | initializes a new instance. |
| | | @param userID the user ID |
| | | @param firstName the user's first name |
| | | @param middleName the user's middle name |
| | | @param lastName the user's last name |
| | | @param name the user's complete name |
| | | @param linkURL the link for this profile |
| | | @param refreshDate the optional date this profile was fetched. Defaults to [NSDate date]. |
| | | @param imageURL an optional URL to use for fetching a user's profile image |
| | | @param email the user's email |
| | | */ |
| | | - (instancetype)initWithUserID:(FBSDKUserIdentifier *)userID |
| | | firstName:(nullable NSString *)firstName |
| | | middleName:(nullable NSString *)middleName |
| | | lastName:(nullable NSString *)lastName |
| | | name:(nullable NSString *)name |
| | | linkURL:(nullable NSURL *)linkURL |
| | | refreshDate:(nullable NSDate *)refreshDate |
| | | imageURL:(nullable NSURL *)imageURL |
| | | email:(nullable NSString *)email |
| | | DEPRECATED_MSG_ATTRIBUTE("This constructor will be removed in the next major release."); |
| | | |
| | | /** |
| | | @param userID the user ID |
| | | @param firstName the user's first name |
| | | @param middleName the user's middle name |
| | | @param lastName the user's last name |
| | | @param name the user's complete name |
| | | @param linkURL the link for this profile |
| | | @param refreshDate the optional date this profile was fetched. Defaults to [NSDate date]. |
| | | @param imageURL an optional URL to use for fetching a user's profile image |
| | | @param email the user's email |
| | | @param friendIDs a list of identifiers for the user's friends |
| | | @param birthday the user's birthday |
| | | @param ageRange the user's age range |
| | | @param isLimited indicates if the information provided is incomplete in some way. |
| | | When true, `loadCurrentProfileWithCompletion:` will assume the profile is |
| | | incomplete and disregard any cached profile. Defaults to false. |
| | | */ |
| | | - (instancetype)initWithUserID:(FBSDKUserIdentifier *)userID |
| | | firstName:(nullable NSString *)firstName |
| | | middleName:(nullable NSString *)middleName |
| | | lastName:(nullable NSString *)lastName |
| | | name:(nullable NSString *)name |
| | | linkURL:(nullable NSURL *)linkURL |
| | | refreshDate:(nullable NSDate *)refreshDate |
| | | imageURL:(nullable NSURL *)imageURL |
| | | email:(nullable NSString *)email |
| | | friendIDs:(nullable NSArray<FBSDKUserIdentifier *> *)friendIDs |
| | | birthday:(nullable NSDate *)birthday |
| | | ageRange:(nullable FBSDKUserAgeRange *)ageRange |
| | | isLimited:(BOOL)isLimited; |
| | | |
| | | /** |
| | | initializes a new instance. |
| | | @param userID the user ID |
| | | @param firstName the user's first name |
| | | @param middleName the user's middle name |
| | | @param lastName the user's last name |
| | | @param name the user's complete name |
| | | @param linkURL the link for this profile |
| | | @param refreshDate the optional date this profile was fetched. Defaults to [NSDate date]. |
| | | @param imageURL an optional URL to use for fetching a user's profile image |
| | | @param email the user's email |
| | | @param friendIDs a list of identifiers for the user's friends |
| | | */ |
| | | - (instancetype)initWithUserID:(FBSDKUserIdentifier *)userID |
| | | firstName:(nullable NSString *)firstName |
| | | middleName:(nullable NSString *)middleName |
| | | lastName:(nullable NSString *)lastName |
| | | name:(nullable NSString *)name |
| | | linkURL:(nullable NSURL *)linkURL |
| | | refreshDate:(nullable NSDate *)refreshDate |
| | | imageURL:(nullable NSURL *)imageURL |
| | | email:(nullable NSString *)email |
| | | friendIDs:(nullable NSArray<FBSDKUserIdentifier *> *)friendIDs |
| | | DEPRECATED_MSG_ATTRIBUTE("This constructor will be removed in the next major release.");; |
| | | |
| | | /** |
| | | initializes a new instance. |
| | | @param userID the user ID |
| | | @param firstName the user's first name |
| | | @param middleName the user's middle name |
| | | @param lastName the user's last name |
| | | @param name the user's complete name |
| | | @param linkURL the link for this profile |
| | | @param refreshDate the optional date this profile was fetched. Defaults to [NSDate date]. |
| | | @param imageURL an optional URL to use for fetching a user's profile image |
| | | @param email the user's email |
| | | @param friendIDs a list of identifiers for the user's friends |
| | | @param birthday the user's birthday |
| | | @param ageRange the user's age range |
| | | */ |
| | | - (instancetype)initWithUserID:(FBSDKUserIdentifier *)userID |
| | | firstName:(nullable NSString *)firstName |
| | | middleName:(nullable NSString *)middleName |
| | | lastName:(nullable NSString *)lastName |
| | | name:(nullable NSString *)name |
| | | linkURL:(nullable NSURL *)linkURL |
| | | refreshDate:(nullable NSDate *)refreshDate |
| | | imageURL:(nullable NSURL *)imageURL |
| | | email:(nullable NSString *)email |
| | | friendIDs:(nullable NSArray<FBSDKUserIdentifier *> *)friendIDs |
| | | birthday:(nullable NSDate *)birthday |
| | | ageRange:(nullable FBSDKUserAgeRange *)ageRange |
| | | NS_DESIGNATED_INITIALIZER; |
| | | |
| | | /** |
| | | The current profile instance and posts the appropriate notification |
| | |
| | | /** |
| | | The user id |
| | | */ |
| | | @property (nonatomic, copy, readonly) NSString *userID; |
| | | @property (nonatomic, copy, readonly) FBSDKUserIdentifier *userID; |
| | | /** |
| | | The user's first name |
| | | */ |
| | |
| | | /** |
| | | A URL to the user's profile. |
| | | |
| | | IMPORTANT: This field will only be populated if your user has granted your application the 'user_link' permission |
| | | |
| | | Consider using `FBSDKAppLinkResolver` to resolve this |
| | | to an app link to link directly to the user's profile in the Facebook app. |
| | | */ |
| | |
| | | The last time the profile data was fetched. |
| | | */ |
| | | @property (nonatomic, readonly) NSDate *refreshDate; |
| | | /** |
| | | A URL to use for fetching a user's profile image. |
| | | */ |
| | | @property (nonatomic, readonly, nullable) NSURL *imageURL; |
| | | /** |
| | | The user's email. |
| | | |
| | | IMPORTANT: This field will only be populated if your user has granted your application the 'email' permission. |
| | | */ |
| | | @property (nonatomic, copy, readonly, nullable) NSString *email; |
| | | /** |
| | | A list of identifiers of the user's friends. |
| | | |
| | | IMPORTANT: This field will only be populated if your user has granted your application the 'user_friends' permission. |
| | | We are building out this field in Limited Login with the intention to roll it out in early spring. |
| | | */ |
| | | @property (nonatomic, copy, readonly, nullable) NSArray<FBSDKUserIdentifier *> *friendIDs; |
| | | |
| | | /** |
| | | The user's birthday. |
| | | |
| | | IMPORTANT: This field will only be populated if your user has granted your application the 'user_birthday' permission. |
| | | */ |
| | | @property (nonatomic, copy, readonly, nullable) NSDate *birthday; |
| | | |
| | | /** |
| | | The user's age range |
| | | |
| | | IMPORTANT: This field will only be populated if your user has granted your application the 'user_age_range' permission. |
| | | */ |
| | | @property (nonatomic, copy, readonly, nullable) FBSDKUserAgeRange *ageRange; |
| | | |
| | | /** |
| | | Indicates if `currentProfile` will automatically observe `FBSDKAccessTokenDidChangeNotification` notifications |