Start 2025 on time and up to date. Seamlessly integrate your calendars into Dropbox with these simple steps.

Forum Discussion

dgnabasik's avatar
dgnabasik
Helpful | Level 5
5 years ago

list_shared_links

 

The following cURL command works: 
curl -X POST https://content.dropboxapi.com/2/files/download \
--header "Authorization: Bearer myAccessToken" \
--header "Dropbox-API-Arg: {\"path\": \"/Public/086d3dd999a7abab.mp3\"}" \
-o "./086d3dd999a7abab.mp3"
 
The following cURL command does NOT work: 
curl -X POST https://api.dropboxapi.com/2/sharing/list_shared_links \
--header "Authorization: Bearer myAccessToken" \
--header "Content-Type: application/json" \
--data "{\"path\": \"/Public/086d3dd999a7abab.mp3\", \"direct_only\": true}"
Result => {"error_summary": "path/not_found/...", "error": {".tag": "path", "path": {".tag": "not_found"}}}
 
Why doesn't this cURL command work with the same file /Public/086d3dd999a7abab.mp3?
Thanks in advance.
  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Staff rankDropbox Staff

    Thanks for the report. We'll need to look into this more specifically for you. Please open an API ticket here, and also include a few sample 'X-Dropbox-Request-Id' response header values for these failures.

    • dgnabasik's avatar
      dgnabasik
      Helpful | Level 5

      Thanks, Greg, I figured it out.