I'm trying to post from fanpage1 (where I am admin) to fanpage2 ( it's liked from fanpage1).
I'm trying this code:
FB.api('/' + from.id, {fields: 'access_token'}, function(resp) {
// it returns the access token for fanpage1
if(resp.access_token) {
FB.api('/' + where.app_id + '/feed', 'post', { message: msg.message , access_token: resp.access_token },function(response) {
console.log(response);
});
}
});
error: Posts where the actor is a page cannot also include a target_id
Thanks for any help!
-A