gpt4 book ai didi

facebook - 使用 graph api 私下发布到 facebook 上的 friend 墙上

转载 作者:行者123 更新时间:2023-11-30 05:27:17 25 4
gpt4 key购买 nike

我想从我的应用程序向 friend 墙发布一个提要并将其设置为私有(private),登录用户和 friend 都可以看到。我想使用新的 Graph api 执行此操作,我看到如果我在提要帖子中设置“to”参数,它将发布到用户 friend 墙上。

我在这里找到了一段代码:<德尔> http://forum.developers.facebook.net/viewtopic.php?id=56458(VovaOnline 发表)(链接已失效,因为 Facebook 已关闭论坛)

$result = $facebook->api('/me/feed', 'POST', array(
'from' => array(
'name' => 'Vladimir Ageenko',
'id' => '100001308281502'
),
'name' => 'TEST NAME',
'caption' => 'Test Caption',
'description' => 'Test Description',
'message' => 'This is test.',
'privacy' => array(
'description' => 'Vladimir Sergeevich',
'value' => 'CUSTOM',
'friends' => 'SOME_FRIENDS',
'allow' => '100001338940933'
)
));

我将帖子类型设置为“链接”。谁能告诉我这段代码有什么问题。我知道的一件事是“从”字段必须是“到”并且必须在“数据”变量中传递。我不知道该怎么做。谁能帮帮我?

最佳答案

你必须对隐私数组进行编码,试试这个:

$privacy = array(
'description' => 'Vladimir Sergeevich',
'value' => 'CUSTOM',
'friends' => 'SOME_FRIENDS',
'allow' => '100001338940933'
);

$result = $facebook->api('/me/feed', 'POST', array(
'from' => array(
'name' => 'Vladimir Ageenko',
'id' => '100001308281502'
),
'name' => 'TEST NAME',
'caption' => 'Test Caption',
'description' => 'Test Description',
'message' => 'This is test.',
'privacy' => json_encode($privacy)
));

关于facebook - 使用 graph api 私下发布到 facebook 上的 friend 墙上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4478497/

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