通过share_open_graph API

时间:2018-01-12 06:39:51

标签: facebook facebook-graph-api share fb.ui

我遇到了FB share_open_graph API的问题。我在页面上有一些文字,并有一个按钮来共享该文本和页面网址(http://www.example.com?article_id=123)。

点击分享按钮文字和链接在Facebook用户墙上分享。但是,如果用户点击Facebook墙上的帖子,则链接将通过新参数更新" fb_action_ids和fb_action_types"。
更新了网址:http://www.example.com?article_id=123&fb_action_ids=422174444504370&fb_action_types=og.shares

现在,如果用户想要再次共享那些文本和页面链接FB share_open_graph API会抛出错误 enter image description here


FB.ui({
method: 'share_open_graph',
action_type: 'og.shares',
action_properties: JSON.stringify({
    object : {
        'og:url': url, // your url to share
        'og:title': title,
        'og:description': desc
    }
})

0 个答案:

没有答案