PureBasic Google Drive: List Files on a Team Drive

Back to Index

Retrieves a list of files for a particular team drive.

Documentation: https://developers.google.com/drive/v3/reference/files/list


IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkRest.pb"
IncludeFile "CkOAuth2.pb"

Procedure ChilkatExample()

    rest.i = CkRest::ckCreate()
    If rest.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    ;   Provide a previously obtained OAuth2 access token.
    oauth2.i = CkOAuth2::ckCreate()
    If oauth2.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkOAuth2::setCkAccessToken(oauth2, "OAUTH2_ACCESS_TOKEN")
    CkRest::ckSetAuthOAuth2(rest,oauth2)

    success = CkRest::ckConnect(rest,"www.googleapis.com",443,1,1)
    If success <> 1
        Debug CkRest::ckLastErrorText(rest)
        CkRest::ckDispose(rest)
        CkOAuth2::ckDispose(oauth2)
        ProcedureReturn
    EndIf

    CkRest::ckAddQueryParam(rest,"teamDriveId","0AEd3EhGff2SaUk9PVA")
    CkRest::ckAddQueryParam(rest,"includeTeamDriveItems","true")
    CkRest::ckAddQueryParam(rest,"corpora","teamDrive")
    CkRest::ckAddQueryParam(rest,"supportsTeamDrives","true")

    sbJson.i = CkStringBuilder::ckCreate()
    If sbJson.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success = CkRest::ckFullRequestNoBodySb(rest,"GET","/drive/v3/files",sbJson)
    If success <> 1
        Debug CkRest::ckLastErrorText(rest)
        CkRest::ckDispose(rest)
        CkOAuth2::ckDispose(oauth2)
        CkStringBuilder::ckDispose(sbJson)
        ProcedureReturn
    EndIf

    If CkRest::ckResponseStatusCode(rest) <> 200
        Debug "Received error response code: " + Str(CkRest::ckResponseStatusCode(rest))
        Debug "Response body:"
        Debug CkStringBuilder::ckGetAsString(sbJson)
        CkRest::ckDispose(rest)
        CkOAuth2::ckDispose(oauth2)
        CkStringBuilder::ckDispose(sbJson)
        ProcedureReturn
    EndIf

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(json,sbJson)

    ;  The following code parses the JSON response.
    ;  A sample JSON response is shown below the sample code.
    kind.s
    incompleteSearch.i
    i.i
    count_i.i
    id.s
    name.s
    mimeType.s
    teamDriveId.s

    kind = CkJsonObject::ckStringOf(json,"kind")
    incompleteSearch = CkJsonObject::ckBoolOf(json,"incompleteSearch")
    i = 0
    count_i = CkJsonObject::ckSizeOfArray(json,"files")
    While i < count_i
        CkJsonObject::setCkI(json, i)
        kind = CkJsonObject::ckStringOf(json,"files[i].kind")
        id = CkJsonObject::ckStringOf(json,"files[i].id")
        name = CkJsonObject::ckStringOf(json,"files[i].name")
        mimeType = CkJsonObject::ckStringOf(json,"files[i].mimeType")
        teamDriveId = CkJsonObject::ckStringOf(json,"files[i].teamDriveId")
        i = i + 1
    Wend

    Debug "Example Completed."


    CkRest::ckDispose(rest)
    CkOAuth2::ckDispose(oauth2)
    CkStringBuilder::ckDispose(sbJson)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

Sample JSON Response Body

{
  "kind": "drive#fileList",
  "incompleteSearch": false,
  "files": [
    {
      "kind": "drive#file",
      "id": "18UpPSa-c_OPNi2CXY05gkpjIzNAJyd4q",
      "name": "hedgehogs.jpg",
      "mimeType": "image/jpeg",
      "teamDriveId": "0AEd3EhGff2SaUk9PVA"
    },
    {
      "kind": "drive#file",
      "id": "1R_70heIyzIAu1_u0prXbYcaIiJRVkgBl",
      "name": "penguins.jpg",
      "mimeType": "image/jpeg",
      "teamDriveId": "0AEd3EhGff2SaUk9PVA"
    },
    {
      "kind": "drive#file",
      "id": "16MsxSRSz6ISRx1D_PXyA5Sj6aNFSEd4e",
      "name": "seahorse.jpg",
      "mimeType": "image/jpeg",
      "teamDriveId": "0AEd3EhGff2SaUk9PVA"
    },
    {
      "kind": "drive#file",
      "id": "1lT4TbeSSMtxgB2MmwE7-5i7vQaxhr6Ze",
      "name": "starfish2.jpg",
      "mimeType": "image/jpeg",
      "teamDriveId": "0AEd3EhGff2SaUk9PVA"
    },
    {
      "kind": "drive#file",
      "id": "1PVtx4SJB0n2GDcaJAbi_mSlQwXltYsx3",
      "name": "test",
      "mimeType": "application/vnd.google-apps.folder",
      "teamDriveId": "0AEd3EhGff2SaUk9PVA"
    }
  ]
}