Facebook no_feed_story not working

913 Views Asked by At

I am trying to post to Facebook but no feed story flag doesnt seem to be working. The code that i am trying is

FB.api('/me/marsmsps:review?recipe=https://sultry-brook-4860.herokuapp.com/',
    'post', 
'no_feed_story=1',
function(response) {
       if (!response || response.error) {
          alert('Error occured'+response.error.message);
       } else {
          alert('successful! Action ID: ' + response.id);
       }
    });

Whether i set the no_feed_story flag or not, in all cases, the feed is visible on my profile with my id but is not visible from my friend's id. Am I doing some thing wrong here?

1

There are 1 best solutions below

2
On

try no_feed_story=true. you used no_feed_story=1, but Facebook expects it to be true or false.