Lists the messages in the user's mailbox.
require 'chilkat'
rest = Chilkat::CkRest.new()
# Provide a previously obtained OAuth2 access token.
oauth2 = Chilkat::CkOAuth2.new()
oauth2.put_AccessToken("OAUTH2_ACCESS_TOKEN")
rest.SetAuthOAuth2(oauth2)
success = rest.Connect("www.googleapis.com",443,true,true)
if (success != true)
print rest.lastErrorText() + "\n";
exit
end
sbJson = Chilkat::CkStringBuilder.new()
success = rest.FullRequestNoBodySb("GET","/gmail/v1/users/me/messages",sbJson)
if (success != true)
print rest.lastErrorText() + "\n";
exit
end
if (rest.get_ResponseStatusCode() != 200)
print "Received error response code: " + rest.get_ResponseStatusCode().to_s() + "\n";
print "Response body:" + "\n";
print sbJson.getAsString() + "\n";
exit
end
json = Chilkat::CkJsonObject.new()
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")
while i < count_i
json.put_I(i)
id = json.stringOf("messages[i].id")
threadId = json.stringOf("messages[i].threadId")
i = i + 1
end
print "Example Completed." + "\n";
{
"messages": [
{
"id": "15fc237e79da4174",
"threadId": "15fc237e79da4174"
},
{
"id": "15fc23688c553739",
"threadId": "15fc23688c553739"
},
{
"id": "15fbd37d3a8f9950",
"threadId": "15fbd37d3a8f9950"
},
{
"id": "15fb5e49b822ac1d",
"threadId": "15fb5e49b822ac1d"
},
{
"id": "15fb5e49b7a0739b",
"threadId": "15fb5e49b7a0739b"
}
],
"resultSizeEstimate": 5
}