I cannot post to Facebook through my desktop applicationsand get the following error.
{"error":{"message":"(#200) This API call requires a valid app_id.","type":"OAuthException"}}
I use the Facebook Android SDK for logging in and getting the access token, and use the access token in a desktop application to get the friends list and to post messages to the user.
I can get the user's profile and list of friends, but I can't publish to his wall.
a. I have the publish_stream permission and offline_access permission
b. I obtain an access token after obtaining the code for application authentication as specified in the Facebook documentation
The URL I use to obtain the access token is:
https://graph.facebook.com/oauth/access_token?client_id=CLIENT_ID&redirect_uri=REDIRECT_URI&client_secret=CLIENT_SECRET&code=CODE
The response is the following.
access_token=AAACPTk3uFT8BAKkB8labokDgYasskvBrlxXwTJYInomZAoizBRwk8XjZCQU7okD5Pt1pvxS02PulJOOZBlnHvVeisY6GJkfpk1Hf2GyhQRS3nf6FeRn&expires=6422
This shows that there is no exception thrown by Facebook.
However, I doubt that the access token I get from Facebook is invalid, since it is not similar to that shown in the example on the Facebook developers authentication guide.
In Facebook Graph API — getting access tokens, Ben Biddington points out that the access token must also contain session information. According to him and the Facebook documentation, the token seems to be too short and is thus missing infomation.
How do I get an access token which will allow me to publish posts on a user's wall?