Lists the user's Team Drives.
func chilkatTest() {
let rest = CkoRest()
var success: Bool
// Provide a previously obtained OAuth2 access token.
let oauth2 = CkoOAuth2()
oauth2.AccessToken = "OAUTH2_ACCESS_TOKEN"
rest.SetAuthOAuth2(oauth2)
success = rest.Connect("www.googleapis.com", port: 443, tls: true, autoReconnect: true)
if success != true {
print("\(rest.LastErrorText)")
return
}
let sbJson = CkoStringBuilder()
success = rest.FullRequestNoBodySb("GET", uriPath: "/drive/v3/teamdrives", sb: sbJson)
if success != true {
print("\(rest.LastErrorText)")
return
}
if rest.ResponseStatusCode.integerValue != 200 {
print("Received error response code: \(rest.ResponseStatusCode.integerValue)")
print("Response body:")
print("\(sbJson.GetAsString())")
return
}
let json = CkoJsonObject()
json.LoadSb(sbJson)
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
var kind: String?
var i: Int
var count_i: Int
var id: String?
var name: String?
kind = json.StringOf("kind")
i = 0
count_i = json.SizeOfArray("teamDrives").integerValue
while i < count_i {
json.I = i
kind = json.StringOf("teamDrives[i].kind")
id = json.StringOf("teamDrives[i].id")
name = json.StringOf("teamDrives[i].name")
i = i + 1
}
print("Example Completed.")
}
{
"kind": "drive#teamDriveList",
"teamDrives": [
{
"kind": "drive#teamDrive",
"id": "0AEd3EhGff2SaUk9PVA",
"name": "Project Pegasus"
},
{
"kind": "drive#teamDrive",
"id": "0AGO-j6qTGkqgUk9PVA",
"name": "Project Unicorn"
}
]
}