Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Android™) 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.
// Important: Don't forget to include the call to System.loadLibrary // as shown at the bottom of this code sample. package com.test; import android.app.Activity; import com.chilkatsoft.*; import android.widget.TextView; import android.os.Bundle; public class SimpleActivity extends Activity { private static final String TAG = "Chilkat"; // Called when the activity is first created. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkRest rest = new CkRest(); // Connect to the www.dropbox.com endpoint. boolean bTls = true; int port = 443; boolean bAutoReconnect = true; boolean success = rest.Connect("api.dropboxapi.com",port,bTls,bAutoReconnect); if (success != true) { Log.i(TAG, rest.lastErrorText()); return; } rest.AddHeader("Content-Type","application/json"); rest.AddHeader("Authorization","Bearer DROPBOX-ACCESS-TOKEN"); CkJsonObject json = new CkJsonObject(); // 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); String responseStr = rest.fullRequestString("POST","/2/files/list_folder",json.emit()); if (rest.get_LastMethodSuccess() != true) { Log.i(TAG, rest.lastErrorText()); return; } // Success is indicated by a 200 response status code. if (rest.get_ResponseStatusCode() != 200) { // Examine the request/response to see what happened. Log.i(TAG, "response status code = " + String.valueOf(rest.get_ResponseStatusCode())); Log.i(TAG, "response status text = " + rest.responseStatusText()); Log.i(TAG, "response header: " + rest.responseHeader()); Log.i(TAG, "response body (if any): " + responseStr); Log.i(TAG, "---"); Log.i(TAG, "LastRequestStartLine: " + rest.lastRequestStartLine()); Log.i(TAG, "LastRequestHeader: " + rest.lastRequestHeader()); return; } CkJsonObject jsonResponse = new CkJsonObject(); jsonResponse.Load(responseStr); jsonResponse.put_EmitCompact(false); Log.i(TAG, jsonResponse.emit()); // 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); Log.i(TAG, "----"); Log.i(TAG, "name: " + jsonResponse.stringOf("entries[i].name")); Log.i(TAG, "path_lower: " + jsonResponse.stringOf("entries[i].path_lower")); Log.i(TAG, "path_display: " + jsonResponse.stringOf("entries[i].path_display")); if (jsonResponse.HasMember("entries[i].sharing_info") == true) { Log.i(TAG, "has sharing_info..."); Log.i(TAG, "read_only: " + jsonResponse.stringOf("entries[i].sharing_info.read_only")); Log.i(TAG, "shared_folder_id: " + jsonResponse.stringOf("entries[i].sharing_info.shared_folder_id")); } if (jsonResponse.HasMember("entries[i].client_modified") == true) { // Demonstrate how to parse a date/time: CkDateTime ckdt = new CkDateTime(); 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. boolean bLocalDateTime = true; CkDtObj dt = ckdt.GetDtObj(bLocalDateTime); Log.i(TAG, String.valueOf(dt.get_Year()) + "-" + String.valueOf(dt.get_Month()) + "-" + String.valueOf(dt.get_Day())); } i = i + 1; } Log.i(TAG, "Success."); // { // "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 // } // } static { System.loadLibrary("chilkat"); // Note: If the incorrect library name is passed to System.loadLibrary, // then you will see the following error message at application startup: //"The application <your-application-name> has stopped unexpectedly. Please try again." } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.