我真的需要您在应用程序选项卡中创建发布流对话框的帮助。
我的标签应用程序上有这个代码片段:(tab.asp)
<div id="contentFooter">
<ul>
<li><fb:share-button class="url" href="<%=getConfig("AppURL")%>" /></li>
</ul>
</div>
上面的代码片段是有用的,但我想要的是这样的东西(在javascript中):
function fb_publish() {
FB.ui({
method: 'stream.publish',
message: 'blah...',
attachment: {
name: 'name....',
caption: 'Join NOW to WIN!',
description: ('test'),
href: '<%=getConfig("AppURL")%>'
},action_links: [{
text: 'Play Now!',
href: '<%=getConfig("AppURL")%>'
}],
user_prompt_message: 'What’s on your mind?'
},function(response) {
if (response && response.post_id) {
//alert('Post was published.');
} else {
//alert('Post was not published.');
}
});
}
但遗憾的是......,在应用程序选项卡上,我无法放入javascript(javascript无效)。 有没有办法让我实现像我的javascript代码一样的东西,但在fbml标签内。
先谢谢你 和