We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
File access
4 TopicsAccess dropbox file - Authentication failed because the remote party has closed the transport stream
i'm new in this type of access. I wrote this code but i have the error in objet to recover the list of files in dropbox. Dim token As String token = "sl.B6........." Dim _command As String _command = "https://api.dropboxapi.com/2/files/list_folder" Dim Request As HttpWebRequest Request = HttpWebRequest.Create(_command) Request.Method = "GET" Request.KeepAlive = True Request.ContentType = "application/json" Request.UserAgent = "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" Request.AllowAutoRedirect = True Request.Headers.Add("Authorization", "Bearer " & token) ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 Dim Response As HttpWebResponse = Request.GetResponse()1.8KViews0likes32CommentsGetting a list of files using HTTP API in shell with Curl
I run this and get empty response, despite having created a /Homework/math curl -X POST https://api.dropboxapi.com/2/files/list_folder \ --header "Authorization: Basic <token>" \ --header "Content-Type: application/json" \ --data "{\"include_deleted\":false,\"include_has_explicit_shared_members\":false,\"include_media_info\":false,\"include_mounted_folders\":true,\"include_non_downloadable_files\":true,\"path\":\"/Homework/math\",\"recursive\":false}" And I get the response {"error_summary": "path/unsupported_content_type/.", "error": {".tag": "path", "path": {".tag": "unsupported_content_type"}}}% All I am trying to do is get a list of files? I don't want to preview it, just a list?? Under /Homework/math under this application called "ArduinoCloud" I stored two images and a text file, nothing more.Solved441Views0likes3Comments