以JSON格式获取Facebook好友信息(姓名,生日等)的最简单方法是什么?如果可能的话,我不想使用FB iOS SDK。使用UIWebView。
我认为可以使用2-3个http请求。有可能吗?
答案 0 :(得分:1)
尝试使用以下功能获取faceBook Info(登录用户信息)
- (void)fetchUserDetails {
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"SELECT uid, name, pic FROM user WHERE uid=me()", @"query",nil];
[fb requestWithMethodName:@"fql.query"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];}
希望这有帮助