按照达到的广告 API 文档(http://developers.facebook.com/docs/reference/ads-api/reachestimate/),我在调用时收到“错误”响应
https://graph.facebook.com/act_0000000000000000/reachestimate?currency=EUR&targeting_spec={'countries':['US']}&access_token= _ __
(注意:act_0000000000000000 是我的用户 ID,_是我的访问令牌 - 这些令牌适用于其他广告 API 调用)。
使用 Graph API Explorer 工具,我收到有关此 API 调用的以下响应
{
"error": {
"message": "(#10) Application does not have permission for this action",
"type": "OAuthException",
"code": 10
}
}
但是,当我打电话时
https://graph.facebook.com/1111111111111111/reachestimate?currency=EUR&targeting_spec={'countries':['US']}&access_token= _ __
其中 1111111111111111 是一个广告组,我得到一个有效的数据结构。
有没有人在其他地方遇到过这个?是否有某个“神奇”设置可以在用户帐户上启用此功能(为 ads_management、offline_access 启用)?
任何想法都非常受欢迎。谢谢你。