我怎样才能从Instagram API中得到这些故事?
我也会听到这些故事的。我尝试的官方API根据正式文件,但我不能得到任何故事!
我如何通过api获得这些故事json?
发布于 2022-07-15 16:41:10
下面的API调用是为了获得洞察力
curl -i -X GET "https://graph.facebook.com/v14.0/<stories_id>/insights?metric=exits%2Cimpressions%2Creach%2Creplies%2Ctaps_forward%2Ctaps_back&access_token=<token>"
元文档链接:https://developers.facebook.com/docs/instagram-api/reference/ig-media/insights
下面的API调用是获取故事ID的列表:
curl -i -X GET "https://graph.facebook.com/v14.0/<instagram_id>/stories?access_token=<token>"
元数据链接:https://developers.facebook.com/docs/instagram-api/reference/ig-user/stories/
发布于 2018-11-21 20:57:21
您必须使用图形API来获取故事:
https://developers.facebook.com/docs/instagram-api/reference/user/stories
您将只从您的帐户(已登录),您应该有一个活动的故事,张贴在最后24小时。
https://stackoverflow.com/questions/53371614
复制相似问题