When I attempt to retrieve a folder's specific revision through /metadata I get back an error indicating that the rev is invalid or outdated.
The documentation is worded such that this seems to be a valid thing to request. And it makes sense since it seems like the rev should change in between deletes and creates. Maybe this isn't the case.
I also checked pretty carefully, and this is definitely the rev being returned by the API when doing a normal /metadata call without the rev parameter.
Sample request:
GET https://api.dropbox.com/1/metadata/auto/Test?list=False&rev=65330698e28 HTTP/1.1
Authorization: Bearer _________
Accept: application/json, application/xml, text/json, text/x-json, text/javascript, text/xml
User-Agent: RestSharp/104.4.0.0
Host: api.dropbox.com
Accept-Encoding: gzip, deflate
Response:
HTTP/1.1 400 Bad Request
Server: nginx
Date: Thu, 14 May 2015 17:40:41 GMT
Content-Type: application/json
Connection: keep-alive
Content-Length: 48
{"error": "Invalid or outdated rev 65330698e28"}
Any ideas what could be going wrong? This works just fine for files.
Thanks for the help.