我正在创建一个Facebook应用,并使用stream.publish在墙上分享内容。
但是对于1)attachemnt链接,以及2)FB UI动作链接,当我点击其中任何一个时,它将在同一浏览器窗口中加载页面。
我想以某种方式将这些链接添加到target =“_ blank”之类的内容中,以便在新选项卡中打开链接。 我知道这是可能的,因为当我在youtube上分享视频时,它在动作链接和共享链接上有一个target =“_ blank”。
有人知道这个伎俩吗?
我尝试过这样的代码(我插入了目标空白),但它没有在超链接中添加目标元素:
FB.ui(
{
method: 'stream.publish',
message: 'Check out this great app! http://apps.facebook.com/{your_app}',
attachment:
{
name: 'Connect',
caption: 'The Facebook Connect JavaScript SDK',
description: (
'A small JavaScript library that allows you to harness ' +
'the power of Facebook, bringing the user\'s identity, ' +
'social graph and distribution power to your site.'),
'media': [{
'type': 'image',
'target': '_blank',
'src': 'http://test3.com/test.png',
'href': 'http://test3.com'}],
href: 'http://test2.com',
target: '_blank'
},
action_links: [
{ text: 'Code', href: 'http://github.com/facebook/connect-js' }
],
user_message_prompt: 'Share your thoughts about Connect',
target: '_blank'
}
);
有没有人知道youtube如何实现目标
答案 0 :(得分:0)
我相信你要找的是
显示:'popup',方法之后:'stream.publish'
目标是参考fb user_id来发布墙到墙