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.

post on facebook using phonegap by using android device not showing on main wall of my facebook account

    function postdata(){
      var body = document.getElementById("post").value;
      FB.api('/me/feed', 'post', { message: body }, function(response) {
        if (!response || response.error) {
          alert('Error occured');
        } else {
          alert('Post ID: ' + response.id);
        }
      });
    }
share|improve this question
Try to format your code nicer when you post, you're saving other a lot of time :) Also, mattgemmell.com/2008/12/08/what-have-you-tried ? – Claudiu Sep 11 '12 at 14:23

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.