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

问题描述 投票:1回答: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"}
}
facebook facebook-graph-api facebook-ads-api facebook-marketing-api facebook-java-api
1个回答
1
投票

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

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

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

    • [标准层应用程序:至少190000 + 40 *有效的自定义受众群体数量。最大值为700000。
    • Dev Tier Apps:至少5000 + 40 *有效的自定义受众群体数量。最大值为700000。

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

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
        }
    ],
...
}

希望此帮助

© www.soinside.com 2019 - 2024. All rights reserved.