Sample code for 30+ languages & platforms
DataFlex

Download File from Dropbox

See more Dropbox Examples

Downloads a file from Dropbox.

Chilkat DataFlex Downloads

DataFlex
Use ChilkatAx-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoRest
    Handle hoJson
    Variant vBd
    Handle hoBd
    String sApiResult
    Handle hoJsonResult
    Integer iSize
    String sRev
    String sClientModified
    Handle hoCkdt
    Boolean iBLocalTime
    Variant vDt
    Handle hoDt
    String sTemp1
    Integer iTemp1
    Integer iTemp2
    Integer iTemp3
    Integer iTemp4
    Integer iTemp5

    Move False To iSuccess

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

    // A Dropbox access token should have been previously obtained.
    // Dropbox access tokens do not expire.
    // See Dropbox Access Token.

    Get Create (RefClass(cComChilkatRest)) To hoRest
    If (Not(IsComObjectCreated(hoRest))) Begin
        Send CreateComObject of hoRest
    End

    // Connect to Dropbox
    Get ComConnect Of hoRest "content.dropboxapi.com" 443 True True To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoRest To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Add request headers.
    Get ComAddHeader Of hoRest "Authorization" "Bearer DROPBOX_ACCESS_TOKEN" To iSuccess

    // The download "parameters" are contained in JSON passed in an HTTP request header.
    // This is the JSON indicating the file to be downloaded:
    // { 
    //    "path": "/Homework/lit/hamlet.xml",
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComAppendString Of hoJson "path" "/Homework/lit/hamlet.xml" To iSuccess
    Get ComEmit Of hoJson To sTemp1
    Get ComAddHeader Of hoRest "Dropbox-API-Arg" sTemp1 To iSuccess

    Get Create (RefClass(cComChilkatBinData)) To hoBd
    If (Not(IsComObjectCreated(hoBd))) Begin
        Send CreateComObject of hoBd
    End
    Get pvComObject of hoBd to vBd
    Get ComFullRequestNoBodyBd Of hoRest "POST" "/2/files/download" vBd To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoRest To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // When successful, Dropbox responds with a 200 response code.
    Get ComResponseStatusCode Of hoRest To iTemp1
    If (iTemp1 <> 200) Begin
        // Examine the request/response to see what happened.
        Get ComResponseStatusCode Of hoRest To iTemp1
        Showln "response status code = " iTemp1
        Get ComResponseStatusText Of hoRest To sTemp1
        Showln "response status text = " sTemp1
        Get ComResponseHeader Of hoRest To sTemp1
        Showln "response header: " sTemp1
        Get ComGetString Of hoBd "utf-8" To sTemp1
        Showln "response body (if any): " sTemp1
        Showln "---"
        Get ComLastRequestStartLine Of hoRest To sTemp1
        Showln "LastRequestStartLine: " sTemp1
        Get ComLastRequestHeader Of hoRest To sTemp1
        Showln "LastRequestHeader: " sTemp1
        Procedure_Return
    End

    // The file was downloaded into bd.
    // Save it to the filesystem.
    Get ComWriteFile Of hoBd "c:/temp/qa_output/hamlet.xml" To iSuccess

    // Information about the downloaded file is also available as JSON in a response header.
    // The "dropbox-api-result" response header contains the information.  For example:
    Get ComResponseHdrByName Of hoRest "dropbox-api-result" To sApiResult
    Showln sApiResult

    // In this case, the pretty-formatted dropbox-api-result JSON looks like this:
    // { 
    //   "name": "hamlet.xml",
    //   "path_lower": "/homework/lit/hamlet.xml",
    //   "path_display": "/Homework/lit/hamlet.xml",
    //   "id": "id:74FkdeNuyKAAAAAAAAAAAQ",
    //   "client_modified": "2016-06-02T23:19:00Z",
    //   "server_modified": "2016-06-02T23:19:00Z",
    //   "rev": "9482db15f",
    //   "size": 279658
    // }

    // Load the JSON, pretty-print it, and demonstrate how to get some values...
    Get Create (RefClass(cComChilkatJsonObject)) To hoJsonResult
    If (Not(IsComObjectCreated(hoJsonResult))) Begin
        Send CreateComObject of hoJsonResult
    End
    Set ComEmitCompact Of hoJsonResult To False
    Get ComLoad Of hoJsonResult sApiResult To iSuccess
    // Show the JSON pretty-printed...
    Get ComEmit Of hoJsonResult To sTemp1
    Showln sTemp1

    // Sample code to get data from the JSON response:
    Get ComIntOf Of hoJsonResult "size" To iSize
    Showln "size = " iSize

    Get ComStringOf Of hoJsonResult "rev" To sRev
    Showln "rev = " sRev

    Get ComStringOf Of hoJsonResult "client_modified" To sClientModified
    Get Create (RefClass(cComCkDateTime)) To hoCkdt
    If (Not(IsComObjectCreated(hoCkdt))) Begin
        Send CreateComObject of hoCkdt
    End
    Get ComSetFromTimestamp Of hoCkdt sClientModified To iSuccess
    Move True To iBLocalTime
    Get Create (RefClass(cComChilkatDtObj)) To hoDt
    If (Not(IsComObjectCreated(hoDt))) Begin
        Send CreateComObject of hoDt
    End
    Get pvComObject of hoDt to vDt
    Send ComToDtObj To hoCkdt iBLocalTime vDt

    Get ComDay Of hoDt To iTemp1
    Get ComMonth Of hoDt To iTemp2
    Get ComYear Of hoDt To iTemp3
    Get ComHour Of hoDt To iTemp4
    Get ComMinute Of hoDt To iTemp5
    Showln iTemp1 "/" iTemp2 "/" iTemp3 " " iTemp4 ":" iTemp5


End_Procedure