We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

AdityaTiw's avatar
AdityaTiw
Explorer | Level 3
7 years ago

Error (4xx) We can't find the page you're looking for

Hello ! I am facing an issue while using DropBoxAPIs.  I am trying to download a file from my drop box using AT commands through GSM module.However, it is showing error 404 page not found. Below C...
  • Greg-DB's avatar
    7 years ago
    API calls can fail with a generic HTML page like this if the server doesn't recognize the HTTP request as an API call. Is the sample HTTP request you shared exactly what's actually being sent? If so, it's not valid because it's missing the HTTP version (i.e., "HTTP/1.1") at the end of the first line.

    Also, in the sample HTTP request you shared, you're sending an invalid "Content-Type" for this kind of API call. Since /2/files/download doesn't expect anything in the request body, the "Content-Type" header should be omitted anyway. Please try removing that header and try again. (Or, if you can't remove it entirely, please set the value to be an empty string.)