如何获取应用程序生成的所有 Open Graph Beta 操作?
已经可以获取自定义应用程序操作和对象的所有操作:
https://graph.facebook.com/me /{appNameSpace}:{action}/{object}
这将列出应用程序生成的所有操作,但仅针对给定用户...
我如何获取应用程序生成的所有操作(对于所有它的用户)? 我已经使用应用程序访问令牌尝试了此请求:
https://graph.facebook.com/{appId }/{appNameSpace}:{action}/{object}
但它不起作用...
我也在寻找 activities 或 actions 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK 无法通过 OpenGraph 获取应用程序发布的所有操作,但您的应用程序创建了这些操作,为什么不记录此操作的结果?
然后您创建操作,您应该得到如下响应:
稍后您可能会阅读此操作:
您肯定可以从执行请求以获得多个操作中受益,如下所示:
甚至 批处理这些请求
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:
Later you may read this action:
You for sure may benefit from doing request to get multiple actions like this:
And even batch those requests