How can I get the user's photo and name to show on my website and save them in MySQL?
|
|
This can be simply achieved by querying Graph API with id of user
Results will contain name of the user and URL to his picture |
|||
|
|
|
you need to get permission from user that uses your application. once you have user_photos permision you can do whatever you want. you can find all permission in here: extended permission: https://developers.facebook.com/docs/authentication/permissions/#extended_perms and look out here: |
||||
|
|
|
Juicy is right that you can get that information. Turgut is not right about the authorisation as you can actually get that information for anyone if you know their Facebook Id. And therein lies the issue. If you are in a facebook app then facebook will post the user's id with the request for each page within the request object. But outside of facebook iframe apps you will need a way to query the users id. this can be done using the Facebook javascript api. Here is some further reading: http://developers.facebook.com/docs/reference/api/ http://developers.facebook.com/tools/explorer/?method=GET&path=735915914 |
|||
|
|