gpt4 book ai didi

javascript - fb.ui 在回调中返回 post_id 但实际上并未发布

转载 作者:行者123 更新时间:2023-11-28 02:15:08 25 4
gpt4 key购买 nike

我正在尝试使用 fb.ui 打开一个对话框,以便我的用户能够在他们的 friend 墙上发帖。我正在尝试 facebook 提供的最基本的示例:

<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p><a onclick='postToFeed(); return false;'>Post to Feed</a></p>
<p id='msg'></p>

<script>
FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});

function postToFeed() {

// calling the API ...
var obj = {
method: 'feed',
redirect_uri: 'YOUR URL HERE',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};

function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}

FB.ui(obj, callback);
}

一切看起来都很好,回调被调用,我看到了 post_id,但是当我进入 facebook 时,我看不到我 friend 墙上的实际帖子..

最佳答案

您需要在对象“obj”内指定“to”属性才能将其发布到 friend 的墙上。属性值应该是您要在其墙上发帖的 friend 的 uid。

https://developers.facebook.com/docs/reference/dialogs/feed/

关于javascript - fb.ui 在回调中返回 post_id 但实际上并未发布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16510736/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com