我想使用一个帐户的这些评论获得所有深色帖子instagram 根据文档,有API可以执行该操作 我的问题是:
如何获取此API中提到的creative_id的值
卷曲-X GET -d'fields =“ instagram_permalink_url”'-d'access_token = ACCESS_TOKEN>'\ https://graph.facebook.com/v3.3/ / 然后我得到回应
“ instagram_permalink_url”:“”, “ id”:“”
调用API以获取深色帖子的ID
卷曲-G -d“ access_token =”-d fields = instagram_permalink_url,effective_instagram_story_id“ \ “ https://graph.facebook.com/ /”
然后对于每个有效的instagram_story_id,我都可以使用此API获取广告帖子的所有评论
卷曲-G \ -d“ access_token =” \ -d“ fields = id,message,instagram_user” \ “ https://graph.facebook.com/ //评论”
我仅有的参数是access_token和instagram_account_id,我的目的是获取所有有效的instagram_story_id(Instagram帖子的ID可以显示为Instagram广告) 使用这些API
有人对如何使用这些API有想法