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?
try no_feed_story=true. you used no_feed_story=1, but Facebook expects it to be true or false.