I'm trying to perform an "Update Folder" using Box API v2.0
The point is that i'm receiving the following answer directly from the 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>
According to the docs: http://developers.box.com/docs/#folders-update-information-about-a-folder, there is no need to send any Content-Length in the request, just the Authorization header.
Has anyone gone through this? Is it possible that nginx is rejecting the request before reaching box api?
Thanks in advance.