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 using the facebook API to write to a fan page. I first connect to my facebook application. Then on behalf the app I post something in a fan page. Everything works fine. I receive the id of the post but when I check the fan page I can't see anything. The post doesn't exist. My facebook application uses extended permissions "manage_pages" "publish_stream".
Any help would really be appreciated. Leon
Here are the scriptlets that I use :

(function(d){
         var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
         if (d.getElementById(id)) {return;}
         js = d.createElement('script'); js.id = id; js.async = true;
         js.src = "//connect.facebook.net/en_US/all.js";
         ref.parentNode.insertBefore(js, ref);
       }(document));
window.fbAsyncInit = function() {
        FB.init({
          appId      : '422979991051096', // App ID
          channelUrl : '//www.mediapixar.com/facebook/FBchannel.html', 
          status     : true, // check login status
          cookie     : true, // enable cookies to allow the server to access the session
          xfbml      : true  // parse XFBML
        });
document.getElementById('auth-loginlink').addEventListener('click', function(){
           FB.login(function(response) {
               if (response.authResponse) {
                 chgStatus('conectado');
               } else {
                 chgStatus('desconectado');
               }
             });
        });
function postToTheFanPage(){
    var user_id = "102993286461109";
    var data = {
          link: 'http://www.sinbaches.com/',
          picture: 'http://www.mediapixar.com/Bache/MiniturasBlack.aspx?src=Upclien_932012193.jpg&Wit=240&Hei=180',
          name: 'SinBaches.com',
          caption: 'test insert a new bache from sinbachesmobile',
          description: 'Sierra madre, 55, lomas de chapultepec...',
          message: 'this is a test'
    };
    //inner function to get the response 
        function callback(response) {
                  if (!response || response.error) {
                        alert(response.error);
                    } else {
                        alert('Post ID: ' + response.id);
                        //I receive something like 102993286461109_356892137737888              
                     }
        }
    FB.api("/" + user_id + "/feed", "post", data,callback);             
    }
share|improve this question

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.