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 Call is successfully executed through Postan Utility then to use with AT commands it is converted to HTTP
curl -X POST https://content.dropboxapi.com/2/files/download \
--header "Authorization: Bearer <Access Token>" \
--header "Dropbox-API-Arg: {\"path\": \"/Homework/math/Prime_Numbers.txt\"}"
HTTP code sent on GSM
POST https://content.dropboxapi.com/2/files/download
Host: content.dropboxapi.com
Authorization: Bearer <Access Token>
Dropbox-API-Arg: {"path": "/File_Name.txt"}
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
when above data is sent below is received response which shows error 404:
<!DOCTYPE html><LF>
<html><LF>
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><LF>
<title>Dropbox - 4xx</title><LF>
<link href="https://cfl.dropboxstatic.com/static/css/error.css" rel="stylesheet" type="text/css"/><LF>
<link rel="shortcut icon" href="https://cfl.dropboxstatic.com/static/images/favicon.ico"/><LF>
<LF>
</head><LF>
<body><LF>
<div class="figure"><LF>
<img src="https://cfl.dropboxstatic.com/static/images/illustration_catalog/404_error-illo.png" srcset="https://cfl.dropboxstatic.com/static/images/illustration_catalog/404_error-illo@2x.png 2x" alt="Error: 4xx"/><LF>
</div><LF>
<div id="errorbox"><LF>
<div class="not-found"> <h1>Error (4xx)</h1> We can't find the page you're looking for. <div class="not-found--links"> Here are a few links that may be helpful: <ul> <li><a href="https://www.dropbox.com/home?_tk=fof">Home</a></li> <li><a href="https://www.dropbox.com/help?_tk=fof">Help center</a></li> <li><a href="https://www.dropbox.com/login?_tk=fof">Sign in</a></li> <li><a href="https://www.dropbox.co<CR><LF>
Please help me to sort out the issue.