我正在通过curl使用Google Vision API(图像在JSON中作为base64编码的有效负载发送)。仅当我通过CURL发送的请求低于16k左右时,我才能获得正确的结果。超过16000时,我什么都没有回应:
完全相同的请求,但图像较小
我已将超过16k的请求添加到pastebin:
{
"requests": [
{
"image": {
"content": ...base64...
....
}
失败请求在这里: https://pastebin.com/dl/vL4Ahfw7
我在文档(https://cloud.google.com/vision/docs/supported-files?hl=th)中只能找到20MB的限制,但没有什么比我遇到的怪异问题了。谢谢。