2

我正在使用FB.ui(https://developers.facebook.com/docs/reference/javascript/FB.ui/)在我的网站上创建“发布到您的墙上”功能:

var new_post = {
    method: 'feed',
    link: '/path/to/my/site',
    picture: '/path/to/image.jpg',
    name: 'My Site',
    caption: 'Lorem',
    description: 'Ipsum',
    message: 'Check out this link, guys!' //this does not work
};
FB.ui(new_post, callback_defined_somewhere);

如何在帖子中添加预定义消息,例如“查看此链接,伙计们!”

我尝试将message参数添加到new_post对象中,但这似乎不起作用。

显示对话框时,焦点在文本框上,Say something about this...而不是Check out this link, guys!消息。

有什么建议么?

4

2 回答 2

7

自 2012 年 1 月 1 日以来,它已从 FB API 中删除,并在 2012 年 7 月 5 日之后完全删除。请参阅http://developers.facebook.com/docs/fbjs/

所以现在你不能以任何方式指定消息的文本。

于 2012-04-24T02:24:04.017 回答
1

您可以使用开放图协议。

将此添加到您的 html 标记中:<html xmlns:og="http://opengraphprotocol.org/schema/">

并将其包含在您的<head>标签中。

<meta property="og:title" content="Link title text!"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://example.com/"/>
<meta property="og:site_name" content="Link title text!"/>
<meta property="og:description" content="Link description text!"/>
<meta property="og:image" content="http://example.com/fbshare.png"/>

如果您想要多个消息用于相同的 url,您可以使用?somethingisset($_GET['something'])然后根据需要更改 og 标签。

于 2013-09-17T10:09:56.453 回答