是否可以代表用户在事件源上发布?

发布于 2025-01-02 05:13:04 字数 133 浏览 0 评论 0 原文

这是场景: 用户已设置正在参加活动,我希望通过我的应用程序(php sdk)代表特定用户在该活动的提要上发布。我已经获得了用户的publish_stream扩展权限。

该帖子可能会在用户离线时发生(但据我所知,离线权限现在已被弃用)。

Here's the scenario:
The user has set that is attending an event, I want through my app (php sdk) to post on that event's feed on behalf of the particular user. I already have publish_stream extended permission from the user.

The post might happen at a later stage while the user is offline (but from what I understand offline permission is now depreacated).

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

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

发布评论

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

评论(1

笔芯 2025-01-09 05:13:04

是的,您可以发布链接post状态消息通过Graph API发送到事件源,您应该向POST请求发出POST请求。 facebook.com/docs/reference/api/event/#feed" rel="nofollow">feed event

这是发布 link 的示例:

POST https://graph.facebook.com/EVENT_ID/feed?link=http://example.com&access_token=...

正如您注意到 offline_access 权限已被弃用(并且将2012 年 5 月 1 日停止工作,请参阅开发者路线图)您应该阅读如何处理过期的访问令牌以及如何扩展令牌

Yes, you can post link, post or status message to Event feed via Graph API, you should issue POST request to feed connection of event

This is an example for publishing link:

POST https://graph.facebook.com/EVENT_ID/feed?link=http://example.com&access_token=...

As you noticed offline_access permission is deprecated (and will stop working May 1, 2012, see Developer Roadmap) you should read how to handle expired access tokens and how to extend token.

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