我正在尝试使用 Box API v2.0 执行“更新文件夹”
关键是我直接从 HTTP PUT 收到以下答案
<html>
<head><title>411 Length Required</title></head>
<body bgcolor="white">
<center><h1>411 Length Required</h1></center>
<hr><center>nginx</center>
</body>
</html>
根据文档:http://developers.box.com/docs/#folders-update-information-about-a-folder,不需要在请求中发送任何 Content-Length ,只需发送 Authorization 标头。
有没有人经历过这个?nginx 是否有可能在到达 box api 之前拒绝请求?
提前致谢。