I have created Read button for publishing actoin on facebook timeline using opengraph! So when user click the button the activity is posted on thier timeline! My question is how to remove read action for specific posts? Like on mashable facebook app there's one button giving right to share or unshare read!
<script type="text/javascript">
function postArticle()
{
FB.api(
'/me/news.reads?article=<?php the_permalink() ?>',
'post',
function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Successful! Action ID: ' + response.id);
}
});
}
</script>
I am using above code for share read button. How to create button for unsharing read