Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Dropbox: Access Your Own AccountTo programmatically interact with your own Dropbox account, such as for uploading, downloading, listing files, etc., go to the Dropbox app console and create an application. Then generate an access token in the online app console as shown in the screenshot below. The access token does not expire, and can be used to access your own account from your own non-web application. The example code, located below the screenshot, shows how to list the files in the root folder.
#include <CkRest.h> #include <CkJsonObject.h> #include <CkDateTime.h> #include <CkDtObj.h> void ChilkatSample(void) { CkString strOut; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkRest rest; // Connect to the www.dropbox.com endpoint. bool bTls = true; int port = 443; bool bAutoReconnect = true; bool success = rest.Connect("api.dropboxapi.com",port,bTls,bAutoReconnect); if (success != true) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } rest.AddHeader("Content-Type","application/json"); rest.AddHeader("Authorization","Bearer DROPBOX-ACCESS-TOKEN"); CkJsonObject json; // The root folder should be an empty string, not "/" json.AppendString("path",""); json.AppendBool("recursive",false); json.AppendBool("include_media_info",false); json.AppendBool("include_deleted",false); json.AppendBool("include_has_explicit_shared_members",false); const char *responseStr = rest.fullRequestString("POST","/2/files/list_folder",json.emit()); if (rest.get_LastMethodSuccess() != true) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Success is indicated by a 200 response status code. if (rest.get_ResponseStatusCode() != 200) { // Examine the request/response to see what happened. strOut.append("response status code = "); strOut.appendInt(rest.get_ResponseStatusCode()); strOut.append("\r\n"); strOut.append("response status text = "); strOut.append(rest.responseStatusText()); strOut.append("\r\n"); strOut.append("response header: "); strOut.append(rest.responseHeader()); strOut.append("\r\n"); strOut.append("response body (if any): "); strOut.append(responseStr); strOut.append("\r\n"); strOut.append("---"); strOut.append("\r\n"); strOut.append("LastRequestStartLine: "); strOut.append(rest.lastRequestStartLine()); strOut.append("\r\n"); strOut.append("LastRequestHeader: "); strOut.append(rest.lastRequestHeader()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } CkJsonObject jsonResponse; jsonResponse.Load(responseStr); jsonResponse.put_EmitCompact(false); strOut.append(jsonResponse.emit()); strOut.append("\r\n"); // A sample JSON response is shown at the end of this example. // The following code iterates over the entries. int numEntries = jsonResponse.SizeOfArray("entries"); int i = 0; while (i < numEntries) { jsonResponse.put_I(i); strOut.append("----"); strOut.append("\r\n"); strOut.append("name: "); strOut.append(jsonResponse.stringOf("entries[i].name")); strOut.append("\r\n"); strOut.append("path_lower: "); strOut.append(jsonResponse.stringOf("entries[i].path_lower")); strOut.append("\r\n"); strOut.append("path_display: "); strOut.append(jsonResponse.stringOf("entries[i].path_display")); strOut.append("\r\n"); if (jsonResponse.HasMember("entries[i].sharing_info") == true) { strOut.append("has sharing_info..."); strOut.append("\r\n"); strOut.append("read_only: "); strOut.append(jsonResponse.stringOf("entries[i].sharing_info.read_only")); strOut.append("\r\n"); strOut.append("shared_folder_id: "); strOut.append(jsonResponse.stringOf("entries[i].sharing_info.shared_folder_id")); strOut.append("\r\n"); } if (jsonResponse.HasMember("entries[i].client_modified") == true) { // Demonstrate how to parse a date/time: CkDateTime ckdt; success = ckdt.SetFromTimestamp(jsonResponse.stringOf("entries[i].client_modified")); // The date/time can now be converted to many other formats, or the individual parts // can be accessed. bool bLocalDateTime = true; CkDtObj *dt = ckdt.GetDtObj(bLocalDateTime); strOut.appendInt(dt->get_Year()); strOut.append("-"); strOut.appendInt(dt->get_Month()); strOut.append("-"); strOut.appendInt(dt->get_Day()); strOut.append("\r\n"); delete dt; } i = i + 1; } strOut.append("Success."); strOut.append("\r\n"); // { // "entries": [ // { // ".tag": "folder", // "name": "chilkat Team Folder", // "path_lower": "/chilkat team folder", // "path_display": "/chilkat Team Folder", // "id": "id:2VqX9RLr-JAAAAAAAAAAAQ", // "shared_folder_id": "1210954290", // "sharing_info": { // "read_only": false, // "shared_folder_id": "1210954290" // } // }, // { // ".tag": "file", // "name": "Get Started with Dropbox.pdf", // "path_lower": "/get started with dropbox.pdf", // "path_display": "/Get Started with Dropbox.pdf", // "id": "id:oxE2oMDqH4AAAAAAAAAAAQ", // "client_modified": "2016-05-07T11:47:47Z", // "server_modified": "2016-05-07T11:47:47Z", // "rev": "1483db13f", // "size": 692088 // } // ], // "cursor": "AAEnZXciJyS4gzC_tlX6K2na4c8o7_09-dxmXKHpkPPyf3Kl0H4N-VYnz424nCrFOJuhMiM5_RgNAersumx9qe7NgCSdlppr80iFk0gf6vPlecM6SBtLcs6OYXL8ILWiZ62pfnOvgC3WKGlG6dqZ-VXH", // "has_more": false // } // SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.