已达到Facebook Marketing API(#2654)帐户请求限制,子错误代码:1870024

时间:2019-09-30 07:14:47

标签: facebook facebook-graph-api facebook-ads-api facebook-marketing-api facebook-java-api

我们一直在使用Facebook Marketing API v4.0。对于一个帐户,我在下面不断收到错误消息。我们在Facebook文档中找不到有关此子错误的任何信息。我们的客户删除了帐户中的一些“自定义受众”,但没有任何更改。

{"error":
{"message":"(#2654) Account Request Limits Reached: You've reached the total number of times 
you can create a Custom Audience through one or more ad accounts in this business.",
"type":"OAuthException",
"code":2654,
"error_subcode":1870024,
"fbtrace_id":"AmN2PwJB8utcYZCXu2y-9TF"}
}

1 个答案:

答案 0 :(得分:1)

您可以在Breaking Changes - Ads Management here下签入v4.0 API的变更日志:

  

更新了Marketing API下几个区域的速率限制。这包括:

     
      
  • custom_audience-在一个小时的时间内每个广告帐户:

         
        
    • 标准层应用程序:至少190000 + 40 *有效的自定义受众群体数量。最多700000。
    •   
    • 开发层应用程序:至少5000 + 40 *有效的自定义受众群体数量。最多700000。
    •   
  •   

您还可以按照here所述检查响应Business Use Case Rate Limits的标题中的X-Business-Use-Case-Usage,例如:

x-business-use-case-usage: {
    "{business-object-id}": [
        {
            "type": "{rate-limit-type}",           //Type of BUC rate limit logic being applied.
            "call_count": 100,                     //Percentage of calls made. 
            "total_cputime": 25,                   //Percentage of the total CPU time that has been used.
            "total_time": 25,                      //Percentage of the total time that has been used.   
            "estimated_time_to_regain_access": 19  //Time in minutes to regain access.
        }
    ],      
    "66782684": [
        {
            "type": "ads_management",
            "call_count": 95,
            "total_cputime": 20,
            "total_time": 20,
            "estimated_time_to_regain_access": 0
        }
    ],
    "10153848260347724": [
        {
            "type": "ads_management",
            "call_count": 97,
            "total_cputime": 23,
            "total_time": 23,
            "estimated_time_to_regain_access": 0
        }
    ],
...
}

希望获得帮助

相关问题