如何在共享对话框中包含文本

时间:2017-11-16 16:27:48

标签: javascript facebook facebook-javascript-sdk opengraph

我想通过facebook AP分享一篇文章,但我遇到了一些问题。 在我的原帖中,我有一个文字和一个图像。

通过Facebook使用分享按钮可以保留原始文本,而如果我使用发送,订阅源或共享对话框则不是这样。我也尝试使用以下代码中报告的facebook对象,但即使在这种情况下我也无法弄清楚如何添加文本。

有什么建议吗?

    FB.ui({
    app_id: MY_APP_ID,
    method: 'share_open_graph',
    action_type: 'og.shares',
    action_properties: JSON.stringify({
        object: {
            'og:url': 'www.google.it',
            'og:title': 'myTitle',
            'og:description': 'myDesc',
            'og:image': 'myImg.png'
        }
    })
}, (response) => {
    if (response && response.post_id) {
        alert('Post was published.');
    } else {
        alert('Post wasn t published.');
    }
});

0 个答案:

没有答案