0
如何從Facebook獲取數據到我的應用程序。我需要獲取姓名,年齡,性別,個人資料圖片和其他圖片。我必須把這些數據標籤和UIView的,就像這樣:self.labelName.text = userID.name ...從Facebook SDK獲取數據到iOS應用程序
我使用此代碼,但與Facebook SDK 4.0和更高的工作沒有:
-(void)loginViewFetchedUserInfo:(FBLoginView *)loginView user:(id<FBGraphUser>)user{
NSLog(@"%@", user);
self.profilePicture.profileID = user.id;
self.labelName.text = user.name;
self.gender.text = [user objectForKey:@"email"];}
如果用戶沒有所有信息,例如:性別還是年齡?