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.

when im trying to post on my fanpages via my app, it is posting as me and not as the administrator of the page, this is my code:

 function getPages() {

 FB.api('/me/accounts', function (resp)
 {
 var l=resp.data.length;

     for (var i = 0, q = resp.data.length; i <q; i++)
     {
         var page = resp.data[i];

         FB.api(page.id + '/feed', 'post', params, function(response) {
         if (!response || response.error) {
        alert('Error occured');
          } else {

          }

     });

This solution is working fine:

 FB.api('/me/accounts', function (resp)
 {
 var l=resp.data.length;

     for (var i = 0, q = resp.data.length; i <q; i++)
     {
         var page = resp.data[i];


          FB.api(page.id + '/feed', 'post', {
         message: 'GRATIS GRATIS GRATIS BIOGRAFBILLETTER TIL ALLE. Men skynd dig inden             de er væk. Tryk her for at få dem - tager kun 2 minutter:',
         status: 'success',
         url: pic 
     }, function (response) {

         if (!response || response.error) {

         } else {

         }
share|improve this question
possible duplicate of How to post to Facebook fanpage as fanpage, not user – Igy Jun 27 '12 at 10:59

1 Answer

That's because you're using your own access token to make the post

Use the access_token for each page which you retrieve from the /me/accounts call to make the posts as the pages themselves.

share|improve this answer
Do you have an example? i edited the thread. – Patrick Larsen Jun 27 '12 at 10:53
Just found a dupe with a good answe: facebook.stackoverflow.com/questions/8034753/… – Igy Jun 27 '12 at 10:59
None of them is working, is there any way that i can make you fix my script above :-)? – Patrick Larsen Jun 27 '12 at 12:11

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.