假设下面的代码正常工作(IE:当用户按下共享按钮时,内容发布到他们的页面),我怎样才能将它发布到Apps页面,理想情况下稍微更改消息。目前发布到用户墙的文本是“我喜欢xx网站上的xx”。我还希望将活动发布到我的应用页面,其中包含“我们网站上只是喜欢的xxx”的不同信息。
请注意,此代码可以正常使用,但我希望同时使用其他消息发布到我的“应用”页面。
提前致谢。
<input type="button" onclick="share_prompt()" value="Share" />
<script src="http://connect.facebook.net/en_US/all.js" type="text/javascript" charset="utf-8"></script>
<div id="fb-root"></div>
<script type="text/javascript" charset="utf-8">
FB.init({
appId: 'YOUR_APP_ID',
status: true,
cookie: true,
xfbml: true
});
function share_prompt()
{
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
link: 'http://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.',
message: 'Facebook Dialogs are easy!'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
}
</script>