Hello all,
I'm looking to be able to remove a post with Connect.js. This is what I've tried so far:
FB.ui({
method: 'stream.remove',
post_id: post_id
},
function(response) {
console.log(response);
});
I get a '"stream.remove" is an unknown method.' which is correct because when you look in the ui_methods.js file for Connect.js only stream.publish is defined.
How can I remove a post via the Connect.js?
Thanks, JP