1
查看Apigee docs,似乎沒有指示API BaaS中資產允許的最大文件大小。Apigee API BaaS中存儲資產的最大文件大小是多少?
目前我正在嘗試使用下面的curl命令來發布39MB檔案:
curl -X PUT -i -F name="archive" -F [email protected]"/path/to/archive.zip" "https://api.usergrid.com/{org}/{app}/archives/{uuid}"
而且它扔回來:
HTTP/1.1 413 Request Entity Too Large
Content-Type: application/json
Content-Length: 98
Connection: Close
{
"fault":
{
"faultstring": "Body buffer overflow",
"detail":
{
"errorcode": "protocol.http.TooBigBody"
}
}
}
雖然這發生在免費/共享實例上,所以我沒有能力直接管理代理。 – brandonscript