Reputation: 349
How can i get the cover of a profile with the FacebookSDK in iOS?
[FBRequestConnection startWithGraphPath:@"/me/events?fields=cover"
parameters:nil
HTTPMethod:@"GET"
completionHandler:^(
FBRequestConnection *connection,
id result,
NSError *error
) {
/* handle the result */
NSLog(@"%@", result);
}];
Upvotes: 2
Views: 1306
Reputation: 3663
you can also get facebook cover pic by simply calling
http://graph.facebook.com/{user_id or page_id}?fields=cover
Upvotes: 9