When I programmatically share article shared article in the facebook wall top of the title says "object". How to remove that title my share code is attach here with and image also there.
Below is my code:
FB.ui({
method: 'share_open_graph',
action_type: 'og.shares',
action_properties: JSON.stringify({
object: {
'og:url': article_share_to, // your url to share
'og:title': 'Listen: ' + this.articleTitleFromPage[0]['title'],
'og:description': this.articleTitleFromPage[0]['title'],
'og:image': this.articleTitleFromPage[0]['image']
}
})
}