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.

In my FB app home page I am displaying a text box at the top for users to update their status. Below that is a list of news feeds as in fb home page. I am using the following api to post the status update.

FB.api('/me/feed?message=My status update', 'POST',
            function(response){
                console.log('Response :'+ JSON.stringify(response));
    },{scope: 'publish_stream'});

After the api call i am getting newsfeeds from another api. I do not see my post in the response. But if I fetch the news feeds after the status update from FB website I get my post in response.

Why posting through api is not placing my post in newsfeeds while posting in website places that in newsfeed?

Actually i want my home page to get refreshed(fetch latest newsfeeds) after my status update and show that post on my page. How do I achieve this?

Thanks in advance

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.