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 ?
how to get user's facebook profile pic via fbconnect in my app iphone ? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Try look deeper through http://developers.facebook.com/docs/api. Here is a link to userpic: http://graph.facebook.com/000000000/picture Where 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. |
|||||
|
|
I think the most simple way is this:
|
||||
|
|
|
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 |
|||