Comments
-
Problem solved!! I read a little further the documentation I figured out that I was missing the paramenter size on my code. So I changed this line: curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer ' . $token[0]->itoken, 'Dropbox-API-Arg: {"path": "/test-1/Capture-desktop.PNG", "format": "png", "mode":…
-
It worked!! Thank you!
-
Hi!! I am having the same issue here. I tried to read to documentation at the link below but I received a message saying: access denied! https://www.dropboxforum.com/t5/archive-board/API-v2-Simple-image-gallery-on-my-website-using-dropbox/td-p/169202 Can you help me out pleeease? Thank you in advance.
-
Problem solved!! I just realized it's not necessary to include the complete path from the URL. Since the app has permission to access just it's own folder, I just included the file path itself. So my json file it's like this: { "path": "/text.txt", "include_media_info": false, "include_deleted": false,…
-
Meanwhile, I used the /list_folder request since it supports root path just by leaving it empty "". {"entries": [{".tag": "file", "name": "text.txt", "path_lower": "/text.txt", "path_display": "/text.txt", "id": "id:WEoRMx3RGMAAAAAAAAAAJg", "client_modified": "2019-03-08T00:23:18Z", "server_modified":…
-
Thank you Greg! I am trying to list the files (/get_metadata) in my app folder but for some reason I can't set up the correct path. Take a look at this message: {"error_summary": "path/not_found/", "error": {".tag": "path", "path": {".tag": "not_found"}}} The app folder was automatically created by Dropbox, and after that…