Hi all,
I'm looking for upload and download files from an Application folder I have created on my account (with token). -> e.g. = Applications > app_name > Private > file.xxx
The code I will use on shell will be:
curl -X POST https://content.dropboxapi.com/2/files/upload \
--header "Authorization: Bearer ACCESS_TOKEN" \
--header "Dropbox-API-Arg: {\"path\": \"/Private/file.xxx\"}" \
--header "Content-Type: application/octet-stream"
Quesitons:
· Is the above code correct? Does it requiere more things to be added/modified?
· What should I add to the code to pick a specific file from x location to be uploaded? (e.g. = want to upload temp.txt file from /sdcard/Download/folder1/*)
· How may have this code to be modified to allow getting back that file, from my Dropxbox account, to my device again. (download file) [I think that replacing '...2/files/upload' by '.../download' will be enought]
Thanks.