Sample code for 30+ languages & platforms
Lianja

Dropbox: Access Your Own Account

See more Dropbox Examples

To 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.

image

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loRest = createobject("CkRest")

// Connect to the www.dropbox.com endpoint.
llBTls = .T.
lnPort = 443
llBAutoReconnect = .T.
llSuccess = loRest.Connect("api.dropboxapi.com",lnPort,llBTls,llBAutoReconnect)
if (llSuccess = .F.) then
    ? loRest.LastErrorText
    release loRest
    return
endif

loRest.AddHeader("Content-Type","application/json")
loRest.AddHeader("Authorization","Bearer DROPBOX-ACCESS-TOKEN")

loJson = createobject("CkJsonObject")
// The root folder should be an empty string, not "/"
loJson.AppendString("path","")
loJson.AppendBool("recursive",.F.)
loJson.AppendBool("include_media_info",.F.)
loJson.AppendBool("include_deleted",.F.)
loJson.AppendBool("include_has_explicit_shared_members",.F.)

lcResponseStr = loRest.FullRequestString("POST","/2/files/list_folder",loJson.Emit())
if (loRest.LastMethodSuccess = .F.) then
    ? loRest.LastErrorText
    release loRest
    release loJson
    return
endif

// Success is indicated by a 200 response status code.
if (loRest.ResponseStatusCode <> 200) then
    // Examine the request/response to see what happened.
    ? "response status code = " + str(loRest.ResponseStatusCode)
    ? "response status text = " + loRest.ResponseStatusText
    ? "response header: " + loRest.ResponseHeader
    ? "response body (if any): " + lcResponseStr
    ? "---"
    ? "LastRequestStartLine: " + loRest.LastRequestStartLine
    ? "LastRequestHeader: " + loRest.LastRequestHeader
    release loRest
    release loJson
    return
endif

loJsonResponse = createobject("CkJsonObject")
loJsonResponse.Load(lcResponseStr)

loJsonResponse.EmitCompact = .F.
? loJsonResponse.Emit()

// A sample JSON response is shown at the end of this example.
// The following code iterates over the entries.
loDt = createobject("CkDtObj")
lnNumEntries = loJsonResponse.SizeOfArray("entries")
i = 0
do while i < lnNumEntries
    loJsonResponse.I = i
    ? "----"
    ? "name: " + loJsonResponse.StringOf("entries[i].name")
    ? "path_lower: " + loJsonResponse.StringOf("entries[i].path_lower")
    ? "path_display: " + loJsonResponse.StringOf("entries[i].path_display")
    if (loJsonResponse.HasMember("entries[i].sharing_info") = .T.) then
        ? "has sharing_info..."
        ? "read_only: " + loJsonResponse.StringOf("entries[i].sharing_info.read_only")
        ? "shared_folder_id: " + loJsonResponse.StringOf("entries[i].sharing_info.shared_folder_id")
    endif

    if (loJsonResponse.HasMember("entries[i].client_modified") = .T.) then
        // Demonstrate how to parse a date/time:
        loCkdt = createobject("CkDateTime")
        llSuccess = loCkdt.SetFromTimestamp(loJsonResponse.StringOf("entries[i].client_modified"))
        // The date/time can now be converted to many other formats, or the individual parts
        // can be accessed.
        llBLocalDateTime = .T.
        loCkdt.ToDtObj(llBLocalDateTime,loDt)

        ? str(loDt.Year) + "-" + str(loDt.Month) + "-" + str(loDt.Day)
    endif

    i = i + 1
enddo

? "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
// }
// 


release loRest
release loJson
release loJsonResponse
release loDt
release loCkdt