Hello,
I am using the Dropbox API get_thumbnail_batch over HTTP:
However, starting today, it has suddenly begun returning a 404 error.
It was working without any issues until yesterday.
When I run:
curl -X POST https://content.dropboxapi.com/2/files/get_thumbnail_batch \ --header "Authorization: Bearer <get access token>" \ --header "Content-Type: application/json" \ --data "{\"entries\":[{\"format\":\"jpeg\",\"mode\":\"strict\",\"path\":\"/image.jpg\",\"quality\":\"quality_80\",\"size\":\"w64h64\"}]}"
the response is:
<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width, initial-scale=1" /><title>Dropbox - 404</title>...<h1>Error (404)</h1> We can't find the page you're looking for....</html>
also tested get_thumbnail_v2 using:
curl -X POST https://content.dropboxapi.com/2/files/get_thumbnail_v2 \ --header "Authorization: Bearer <get access token>" \ --header "Dropbox-API-Arg: {\"format\":\"jpeg\",\"mode\":\"strict\",\"quality\":\"quality_80\",\"resource\":{\".tag\":\"path\",\"path\":\"/a.docx\"},\"size\":\"w64h64\"}"
and the response is:
{"error_summary": "path/not_found/", "error": {".tag": "path", "path": {".tag": "not_found"}}}
Since get_thumbnail_v2 returns a valid API response, it seems that there may be an issue specifically with get_thumbnail_batch.
If you have any information regarding this issue, I would appreciate your support.