Reputation: 251
Can you please have a look to this URL
http://developers.facebook.com/docs/reference/rest/photos.upload/
I need to have a working example, how can I use this api to upload a photo to my facebook profile.
Actually I have a php site from where I want to allow users to upload photo to their facebook profile.
Thank you
Upvotes: 2
Views: 1314
Reputation: 231
The link you posted refers to an outdated approach to FB API. It's better to use the Graph API in conjunction with the latest PHP SDK.
http://developers.facebook.com/docs/reference/api/ https://github.com/facebook/php-sdk
here's a reference to the photo object methods http://developers.facebook.com/docs/reference/api/photo/
Here's a fairly recent example from the facebook developers blog: http://developers.facebook.com/blog/post/498/
Upvotes: 2