- (void)loginViewFetchedUserInfo:(FBLoginView *)loginView user:(id<FBGraphUser>)user
{
self.profilePictureView.profileID = user.objectID;
self.nameLabel.text = user.name;
NSLog(@"My ID:%@", user.objectID);
}
I have tried to print the user id using the above code. And what I get is 3176144783XXXXX.
However, I got a different one using this online tool http://findmyfacebookid.com/. The result is 1000042591XXXXX.
Does anyone know the difference? Why do my app and 'findmyfacebookid.com' receive a different user ID for the same user?
Note: My mobile app need to use the FB unique ID to create my own user database. So this is the reason I need a unique ID.