I am trying to upload photo on facebook using javascript. I was able to do status update doing javascript but still struggling with how to upload photo. Can someone please tell me how to code this in Javascript?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The correct code would be:
Keep in mind that the photo has to be on your server, so you need a server script for the upload. the "url" parameter is the absolute url of your uploaded image file. More information: https://developers.facebook.com/docs/reference/api/user/ (see Photos/Create) Keep in mind that the "message" parameter has to be 100% user generated according to the Facebook terms. You also can“t post to a friend wall of the logged in user, that functionality is deprecated and does not work anymore. |
|||||
|
|
I hope this will be useful. By doing photo upload to FB only with the help of javascript you can use the following method. Required thing here are imageData(which is base64 format of image) and the mime type.
|
|||
|
|
|
Here is an example code :
|
||||
|
|