I have a cron script that fetches PDF URLs and saves them to our Dropbox. Sometimes, I encounter a download_failed error for some files.
When using the save_url endpoint, I receive an asyn_******_id, which I then use to check the ****** status via the check_******_status endpoint. The response I get looks like this:
{
".tag": "failed",
"failed": {
".tag": "download_failed"
}
}
I s there a way I can see why it failed ?
Thanks.