gpt4 book ai didi

php - 使用图形 API 在 friend 的墙上发帖

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:57:04 24 4
gpt4 key购买 nike

在 friend 的墙上发布消息,图形 API。我拥有正在使用该应用程序的用户的 publish_stream 扩展权限。

如果我想在我的墙上张贴某物,代码就可以工作。

有没有什么方法可以在墙上发帖或向特定用户的所有 friend 发送消息??

请帮忙谢谢!!

以下是代码,但它不起作用。

 $friends = $facebook->api('/me/friends');
foreach($friends['data'] as $friend){
$friendsUserId = $friend['id'];
echo $friendsUserId . "</br>";
$result = $facebook->api('/$friendsUserId/feed', 'POST', array(
message' => 'Test Message' ));
print_r($result);
}

最佳答案

这也许是实现它的方式。(未经测试,但我在我的应用程序中使用了类似的东西。)

$friends = $facebook->api('/me/friends');

foreach($friends['data'] as $friend) {
$facebook->api('/$friend['id']/feed', 'post', array(
'message' => 'just a test message',
'link' => 'http://site.com',
'name' => 'just a test name',
'caption' => 'just a test caption',
'description' => 'just a test description',
));

}

这是使用 PHP API

关于php - 使用图形 API 在 friend 的墙上发帖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5490869/

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