-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unable to post in facebook 's wall #115
Comments
You are fetching an app access token not a user access token, it's not associated with any user and doesn't have permissions to post to any wall. You need to get a user access token either by using Facebook's own client-side JS sdk's |
Actually,I have created App on my personal account,that app want to send data into my personal wall,is it not possible to send with out again authentication,authencation should be only one time or automatically do Sent from my Windows Phone From: Daniel Friesenmailto:[email protected] You are fetching an app access token not a user access token, it's not associated with any user and doesn't have permissions to post to any wall. You need to get a user access token either by using Facebook's own client-side JS sdk's You are receiving this because you authored the thread. |
No, the Facebook API does not allow that. |
Hi Sir,
when i try to get access token,it will generate access token but this access Token does not post data on the wall,if i manual set access token then post on the wall then it will works
can you please guide me how to get access correctly to post data on the wall
Many thanks
var FB = require('fb');
FB.api('oauth/access_token', {
client_id: 'app_id',
client_secret: 'app_secret',
grant_type: 'client_credentials'
}, function (res) {
if(!res || res.error) {
console.log(!res ? 'error occurred' : res.error);
return;
}
});
The text was updated successfully, but these errors were encountered: