Lists the messages in the user's mailbox.
#import <CkoRest.h>
#import <CkoOAuth2.h>
#import <CkoStringBuilder.h>
#import <CkoJsonObject.h>
#import <NSString.h>
CkoRest *rest = [[CkoRest alloc] init];
BOOL success;
// Provide a previously obtained OAuth2 access token.
CkoOAuth2 *oauth2 = [[CkoOAuth2 alloc] init];
oauth2.AccessToken = @"OAUTH2_ACCESS_TOKEN";
[rest SetAuthOAuth2: oauth2];
success = [rest Connect: @"www.googleapis.com" port: [NSNumber numberWithInt: 443] tls: YES autoReconnect: YES];
if (success != YES) {
NSLog(@"%@",rest.LastErrorText);
return;
}
CkoStringBuilder *sbJson = [[CkoStringBuilder alloc] init];
success = [rest FullRequestNoBodySb: @"GET" uriPath: @"/gmail/v1/users/me/messages" sb: sbJson];
if (success != YES) {
NSLog(@"%@",rest.LastErrorText);
return;
}
if ([rest.ResponseStatusCode intValue] != 200) {
NSLog(@"%@%d",@"Received error response code: ",[rest.ResponseStatusCode intValue]);
NSLog(@"%@",@"Response body:");
NSLog(@"%@",[sbJson GetAsString]);
return;
}
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json LoadSb: sbJson];
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
int resultSizeEstimate;
int i;
int count_i;
NSString *id = 0;
NSString *threadId = 0;
resultSizeEstimate = [[json IntOf: @"resultSizeEstimate"] intValue];
i = 0;
count_i = [[json SizeOfArray: @"messages"] intValue];
while (i < count_i) {
json.I = [NSNumber numberWithInt: i];
id = [json StringOf: @"messages[i].id"];
threadId = [json StringOf: @"messages[i].threadId"];
i = i + 1;
}
NSLog(@"%@",@"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
}