Facebook 分享 ui - 在群组中分享
facebook share ui - share in a group
我想与 FB.ui 分享一个 link 这样我会收到成功/失败的回调
但是 FB.ui 不允许选择分享位置(“在您赢得的时间轴上”,“在一个群组中”。 ..) 就像旧的 sharer.php
那样
见截图-
我的代码呈现此弹出窗口:
有没有办法让新的 fb.ui
弹出窗口像旧的那样允许共享 "in a group"?
这是我的代码:
FB.ui(
{
method: 'feed',
name: 'some name',
link: 'http://some url',
picture: 'http://some image',
caption: "some text",
description: "some description"
},
function(response) {
if (response && response.post_id) {
console.log('Post was published.');
} else {
console.log('Post was not published.');
}
}
);
不幸的是Share Dialog and Feed Dialog有这个限制!
这两个对话框主要是为了 post/share 在 您的 时间轴上。提要对话框确实有 to
参数,但它只能是故事将发布到的配置文件的 ID;并且这个ID必须是同样使用你的应用的朋友。
我想与 FB.ui 分享一个 link 这样我会收到成功/失败的回调
但是 FB.ui 不允许选择分享位置(“在您赢得的时间轴上”,“在一个群组中”。 ..) 就像旧的 sharer.php
那样
见截图-
有没有办法让新的 fb.ui
弹出窗口像旧的那样允许共享 "in a group"?
这是我的代码:
FB.ui(
{
method: 'feed',
name: 'some name',
link: 'http://some url',
picture: 'http://some image',
caption: "some text",
description: "some description"
},
function(response) {
if (response && response.post_id) {
console.log('Post was published.');
} else {
console.log('Post was not published.');
}
}
);
不幸的是Share Dialog and Feed Dialog有这个限制!
这两个对话框主要是为了 post/share 在 您的 时间轴上。提要对话框确实有 to
参数,但它只能是故事将发布到的配置文件的 ID;并且这个ID必须是同样使用你的应用的朋友。