0

当有人点击我网站上的按钮时,我可以使用以下方式将一些内容分享到 facebook:

FB.ui(
{
    method: 'feed',
    name: 'Facebook Dialogs',
    link: 'https://developers.facebook.com/docs/reference/dialogs/',
    picture: 'http://fbrell.com/f8.jpg',
    caption: 'Reference Documentation',
    description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
    if (response && response.post_id) {
    alert('Post was published.');
    } else {
    alert('Post was not published.');
    }
}
);

有什么类似的东西可以在 twitter 上发布一些内容。

4

2 回答 2

0

到这里阅读更多关于 twitter API 响应的信息https://dev.twitter.com/docs/error-codes-responses

于 2013-08-18T08:21:01.213 回答
0

推文 Web Intent可能是您的 FB 示例最方便的模拟。

此答案给出了推文网络意图的示例用法:https ://stackoverflow.com/a/19426405/1637295

于 2013-11-30T22:32:10.770 回答