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'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

share|improve this question
In the page link there aren't any samples!! Nobody can help me ?! – alexgenovese Mar 20 '12 at 14:35
The solution: you must get the access_token from your pages with the api FB.api('/me/accounts') but you can't write outside of your wall!! – alexgenovese Mar 22 '12 at 17:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.