我使用FB ads API创建广告集、广告和创意已经有很长一段时间了,更准确地说,是使用python SDK。在我的大部分活动中,当我批量创建创意时,我总是会在某些时候遇到503错误。
当尝试创建5个创意时,5个创意中有4个成功创建,其中一个(本例中的第4个)出现以下错误:
{"error":
{"message": "Service temporarily unavailable",
"type":"FacebookApiException",
"is_transient":false,
"code":2,
"error_subcode":1487172,
"error_user_title":"Could not save creative",
"error_user_msg":"Could not save creative"
}我已经created an issue on the SDK repo了,但我真的认为这是API本身的问题。有什么想法吗?有没有费率限制?我找不到任何文档或类似的问题。
非常感谢!
发布于 2015-05-28 04:09:39
错误子码1487172列在Marketing API Error Codes Facebook documentation page上,所以我不认为它是https://developers.facebook.com/docs/marketing-api/api-rate-limiting上记录的速率限制错误。
对于5个创意的批量请求,你总是看到1个失败吗?失败的创意之间是否有一致的东西来建议请求中的错误?
你也可以搜索已知的bug列表或者创建一个新的bug列表,这听起来确实像是API方面的一个问题。请参阅https://developers.facebook.com/bugs/
https://stackoverflow.com/questions/30468482
复制相似问题