Possible Duplicate:
How-to articles for iPhone development and Objective-C
Problem getting Facebook pictures via iOS
how to get user's facebook profile pic via fbconnect in my app iphone ?
Possible Duplicate:
How-to articles for iPhone development and Objective-C
Problem getting Facebook pictures via iOS
how to get user's facebook profile pic via fbconnect in my app iphone ?
Here use these delegate methods to get the picture of user.
When you create session you will get the delegate method called didLogin
after calling the method requestWithDelegate you'll get response in this method if succeed
You'll get all the details in json format you can see in GDB
I think the most simple way is this:
Try look deeper through http://developers.facebook.com/docs/api. Here is a link to userpic:
http://graph.facebook.com/000000000/picture
Where
000000000
is an id of user logged.UPDATE by Michael Gaylord: You can also append the type to the request to get different sized images. So your request will look something like: http://graph.facebook.com/00000000/picture?type=large for a large image. Other options are small, normal and square.