Facebook Graph API :发布给离线用户,带有用户 Facebook ID 和 access_token

发布于 2024-09-26 02:30:17 字数 322 浏览 5 评论 0原文

我正在使用PHP/MySQL,我想为一些离线用户发布,我已经拥有publish_stream和offline_access的权限,如何使用Graph API发布到这个用户墙,我已经将用户ID和access_token存储在我的数据库中。

怎么办?

当前代码对我不起作用,php 文件在这一行停止执行:

$result = $facebook->api('/'.$users[fid].'/feed?access_token='.$users[session].'/', 'post', $attachment);

提前致谢。

I'm using PHP/MySQL, and I want to publish for some offline users, I have already both permissions for publish_stream and offline_access, how to publish with the Graph API to this user wall, I already stored users ID's and access_token in my Database.

how to do that ??

the current code is not working for me, the php file stop execution at this line :

$result = $facebook->api('/'.$users[fid].'/feed?access_token='.$users[session].'/', 'post', $attachment);

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏九 2024-10-03 02:30:17

确保您的 $attachment 数据格式正确。另外,您的帖子字符串是错误的,请尝试:

$result = $facebook->api('/'.$users[fid].'/feed?access_token='.$users[session], 'post', $attachment);

同时确保您的 offline_access 令牌有效

Make sure your $attachment data is properly formatted. Also your post string is wrong, try:

$result = $facebook->api('/'.$users[fid].'/feed?access_token='.$users[session], 'post', $attachment);

Also make sure your offline_access token is valid

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文