我有点麻烦。我正在使用下面的脚本。问题出在这里,当我点击" post"按钮,必须弹出我的朋友列表,我必须选择一个。我无法解决这个问题,尝试通过chaning"来解决这个问题。参数为空白和许多其他方式。
谢谢。这是代码:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>My Feed Dialog Page</title>
</head>
<body>
<div id='fb-root'></div>
<script src='http://connect.facebook.net/pl_PL/all.js'></script>
<p><a onclick='postToFeed(); return false;'>Post to Feed</a></p>
<p id='msg'></p>
<script>
FB.init({appId: "asdasdasdasd", status: true, frictionlessRequests : true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
to: '100001987316260',
link: 'asdasdasdasdl',
picture: 'http://fbrell.com/f8.jpg',
name: 'Nazwa',
caption: 'Podnazwa',
description: 'gówno gówno gówno gówno gówno gówno gówno.'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
</script>
</body>
</html>
答案 0 :(得分:0)
不幸的是,feed
对话框
您可以通过stream.share
或send
对话框找到最接近的行为
stream.share 用于共享网址(数据从网址上的og
元数据中读取) - “帖子”中的信息不能是由您设置 - 但用户可以选择朋友并在他的时间轴上发布
<script>
var share = {
method: 'stream.share',
u: 'http://LINK.TO/SHARE/'
};
FB.ui(share, callback_function);
</script>
发送用于将链接发送给朋友/群组/电子邮件作为私信。一个使用示例:
<script>
var publish = {
method: 'send',
link: 'http://LINK.TO/SHARE'
};
FB.ui(publish, callback_function);
</script>