如何在iOS中使用Facebook SDK获取个人资料的封面?
[FBRequestConnection startWithGraphPath:@"/me/events?fields=cover"
parameters:nil
HTTPMethod:@"GET"
completionHandler:^(
FBRequestConnection *connection,
id result,
NSError *error
) {
/* handle the result */
NSLog(@"%@", result);
}];
答案 0 :(得分:9)
你也可以通过简单地拨打
获取facebook封面照片http://graph.facebook.com/{user_id or page_id}?fields=cover