如何获取应用程序生成的所有 Open Graph Beta 操作?

发布于 2024-12-13 16:04:12 字数 533 浏览 3 评论 0原文

已经可以获取自定义应用程序操作和对象的所有操作:

https://graph.facebook.com/me /{appNameSpace}:{action}/{object}

这将列出应用程序生成的所有操作,但仅针对给定用户...

我如何获取应用程序生成的所有操作(对于所有它的用户)? 我已经使用应用程序访问令牌尝试了此请求:

https://graph.facebook.com/{appId }/{appNameSpace}:{action}/{object}

但它不起作用...

我也在寻找 activitiesactions FQL 表,因为每个操作有一个id,它们应该可以在某个地方访问。

有什么建议吗?

It is already possible to get all actions for custom app actions and objects:

https://graph.facebook.com/me/{appNameSpace}:{action}/{object}

This will list all the actions generated by an app, but only for a given user...

How do I get all the actions generated by an app (for all its users)?
I've tried this request with an app access token :

https://graph.facebook.com/{appId}/{appNameSpace}:{action}/{object}

But it does not work...

I was also looking for an activities or actions FQL table, since each action has an id, they should be accessible somewhere.

Any suggestions?

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

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

发布评论

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

评论(1

岁月如刀 2024-12-20 16:04:12

AFAIK 无法通过 OpenGraph 获取应用程序发布的所有操作,但您的应用程序创建了这些操作,为什么不记录此操作的结果?

然后您创建操作,您应该得到如下响应:

{
  id: “{action-instance-id}”
}

稍后您可能会阅读此操作:

GET https://graph.facebook.com/{action-instance-id}

您肯定可以从执行请求以获得多个操作中受益,如下所示:

GET https://graph.facebook.com/?ids={action-id1},{action-id2},{action-idn}

甚至 批处理这些请求

AFAIK there is no way to get all actions published by application via OpenGraph, but your application creates those actions, why just not record results of this operation?

Then you create action you should get response like this:

{
  id: “{action-instance-id}”
}

Later you may read this action:

GET https://graph.facebook.com/{action-instance-id}

You for sure may benefit from doing request to get multiple actions like this:

GET https://graph.facebook.com/?ids={action-id1},{action-id2},{action-idn}

And even batch those requests

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