I'm trying to post a message using the Graph API and a C++ program. I have tried three different methods:
- GET with a URL like
https://graph.facebook.com/USER_ID/feed?access_token=TOKEN&message=Hello
- POST and X-WWW_FORM
- POST and FORM-data
In the case 1, I receive the complete list of messages as an answer, but the message doesn't add to the feed.
In the case 2 and 3, I receive an error 403 as the response.
USER_ID
and TOKEN
are correct and my application has the right permissions. I have reached posting an image to an album with the same application, but it's impossible for me right now to publish messages. Why?