1

我们一直在使用 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"}
}
4

1 回答 1

1

Breaking Changes - Ads Management 您可以在此处查看v4.0 API 的变更日志:

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

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

    • 标准层级应用程序:至少 190000 + 40 * 活跃的自定义受众数量。最大为 700000。
    • 开发层应用程序:至少 5000 + 40 * 活跃的自定义受众数量。最大为 700000。

您还可以按照此处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
        }
    ],
...
}

希望这有帮助

于 2019-09-30T07:29:55.520 回答