I am making facebook application.Using graph api url ,created an album.It return me album id.I want to upload the image into it.for that I wrote like this https://graph.facebook.com/album_id/photos?access_token=generated access token&method=post&picture=D:\foldername\Image\file1.png&message=Google but does not post a photo into the album.I getting error. type": "OAuthException", "message": "(#324) Requires upload file".What does it mean?I have already given the file still why it is asking for it.
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.
|
|
I had the same problem when uploading an image when using cURL The issue was resolved after I put a @ infront of the file name. Perhaps it's the same issue you're facing. |
|||
|
|
|
I would guess that you need to actually use the POST method. It appears that you are using a GET method, with "method=post" in the query string. This can't work, because providing the file patch is not a substitute for providing the file data, which a POST request would send. |
|||
|
|
|
You can use the php sdk to upload a photo: please checkout https://fbphpsdk.herokuapp.com/ for a demo and the code is on github @ https://github.com/eosgood/fbphpsdk/ |
|||
|
|