通过 FQL 检索应用程序请求 (apprequests)?

发布于 2024-12-07 16:36:07 字数 367 浏览 1 评论 0原文

从请求对话框文档

图形API
要使用 Graph API 从单个请求 ID 检索单个用户 ID,请向 request_id 发出 HTTP GET 请求:
https://graph.facebook.com/[request_id]?access_token=USER_ACCESS_TOKEN

此请求可以通过 FQL 获取吗?

From the Requests Dialog document:

Graph API
To retrieve a single User ID from a single Request ID using the Graph API, issue an HTTP GET request to the request_id:
https://graph.facebook.com/[request_id]?access_token=USER_ACCESS_TOKEN

Is this request available through FQL?

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

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

发布评论

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

评论(1

醉生梦死 2024-12-14 16:36:07

是的,这可以通过 apprequest fql 表获得:

SELECT request_id, app_id, recipient_uid, sender_uid 
FROM apprequest 
WHERE request_id = 10150308414012941

Yes this is available via the apprequest fql table:

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