任务:自动从 Facebook 广告帐户中收集数据。
有一个应用程序(facebook 应用程序)可以访问广告帐户 ( access level = development
)。
向应用程序添加了产品“营销 API”。
通过app_id
和secret key
收到access_token
_
GET https://graph.facebook.com/oauth/access_token?client_id=<app_id>&client_secret=<secret>7&grant_type=client_credentials
亲切app_id|token
。
尝试收集见解时:
GET https://graph.facebook.com/v2.8/act_<ad_account_id>/insights/?access_token=<access_token>
我收到
"message": "Unsupported get request.",
"type": "GraphMethodException",
"code": 100
<ad_account_id>
如果我在写作或回复中特别犯了错误,<access_token>
我会得到相应的错误:
“账号无效”
“无效的 OAuth 访问令牌”
我显然错过了一些东西,但我不明白是什么。我将不胜感激任何帮助,在此先感谢。