facebook Graph api 2.2 问题
facebook Graph api 2.2 issue
如何使用图表 api 2.2 获取所有朋友的列表,我还想 post 朋友墙上的文字。在 iOS 申请中
我试过了:
[FBRequestConnection startWithGraphPath:@"/me/friends"
parameters:nil
HTTPMethod:@"GET"
completionHandler:^(
FBRequestConnection *connection,
id<FBGraphUser> result,
NSError *error
) {
/* handle the result */
dicResult =(NSDictionary *) result;
NSLog(@"%@", dicResult);
[self.tblFriendListGroup reloadData];
}];
- 您无法再获得所有好友,只能获得授权您的应用程序的好友。
- 您不能 post 在朋友墙上。这种可能性在很多年前就被排除了,因为它总是垃圾邮件。
查看更新日志:https://developers.facebook.com/docs/apps/changelog?locale=en_GB
如何使用图表 api 2.2 获取所有朋友的列表,我还想 post 朋友墙上的文字。在 iOS 申请中
我试过了:
[FBRequestConnection startWithGraphPath:@"/me/friends"
parameters:nil
HTTPMethod:@"GET"
completionHandler:^(
FBRequestConnection *connection,
id<FBGraphUser> result,
NSError *error
) {
/* handle the result */
dicResult =(NSDictionary *) result;
NSLog(@"%@", dicResult);
[self.tblFriendListGroup reloadData];
}];
- 您无法再获得所有好友,只能获得授权您的应用程序的好友。
- 您不能 post 在朋友墙上。这种可能性在很多年前就被排除了,因为它总是垃圾邮件。
查看更新日志:https://developers.facebook.com/docs/apps/changelog?locale=en_GB