How to get all the Open Graph Beta actions generated by an app?

有些话、适合烂在心里 提交于 2019-11-28 10:53:28

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!