Lists the messages in the user's mailbox.
Dim rest As Chilkat.Rest
Set rest = Chilkat.NewRest
' Provide a previously obtained OAuth2 access token.
Dim oauth2 As Chilkat.OAuth2
Set oauth2 = Chilkat.NewOAuth2
oauth2.AccessToken = "OAUTH2_ACCESS_TOKEN"
success = rest.SetAuthOAuth2(oauth2)
success = rest.Connect("www.googleapis.com",443,True,True)
If (success <> True) Then
Debug.Print rest.LastErrorText
Exit Sub
End If
Dim sbJson As Chilkat.StringBuilder
Set sbJson = Chilkat.NewStringBuilder
success = rest.FullRequestNoBodySb("GET","/gmail/v1/users/me/messages",sbJson)
If (success <> True) Then
Debug.Print rest.LastErrorText
Exit Sub
End If
If (rest.ResponseStatusCode <> 200) Then
Debug.Print "Received error response code: "; rest.ResponseStatusCode
Debug.Print "Response body:"
Debug.Print sbJson.GetAsString()
Exit Sub
End If
Dim json As Chilkat.JsonObject
Set json = Chilkat.NewJsonObject
success = json.LoadSb(sbJson)
' The following code parses the JSON response.
' A sample JSON response is shown below the sample code.
resultSizeEstimate = json.IntOf("resultSizeEstimate")
i = 0
count_i = json.SizeOfArray("messages")
Do While i < count_i
json.I = i
id = json.StringOf("messages[i].id")
threadId = json.StringOf("messages[i].threadId")
i = i + 1
Loop
Debug.Print "Example Completed."
{
"messages": [
{
"id": "15fc237e79da4174",
"threadId": "15fc237e79da4174"
},
{
"id": "15fc23688c553739",
"threadId": "15fc23688c553739"
},
{
"id": "15fbd37d3a8f9950",
"threadId": "15fbd37d3a8f9950"
},
{
"id": "15fb5e49b822ac1d",
"threadId": "15fb5e49b822ac1d"
},
{
"id": "15fb5e49b7a0739b",
"threadId": "15fb5e49b7a0739b"
}
],
"resultSizeEstimate": 5
}