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