(Objective-C) SugarCRM Logout
Demonstrates how to logout of a session.
#import <CkoRest.h>
#import <CkoStringBuilder.h>
#import <CkoJsonObject.h>
CkoRest *rest = [[CkoRest alloc] init];
BOOL success;
success = [rest Connect: @"your.site.domain" port: [NSNumber numberWithInt: 443] tls: YES autoReconnect: YES];
if (success != YES) {
NSLog(@"%@",rest.LastErrorText);
return;
}
[rest AddHeader: @"Cache-Control" value: @"no-cache"];
[rest AddHeader: @"OAuth-Token" value: @"<access_token>"];
CkoStringBuilder *sbReq = [[CkoStringBuilder alloc] init];
CkoStringBuilder *sbJson = [[CkoStringBuilder alloc] init];
success = [rest FullRequestSb: @"POST" uriPath: @"/rest/v10/oauth2/logout" requestBody: sbReq responseBody: 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.
BOOL success;
success = [json BoolOf: @"success"];
// A sample JSON response body that is parsed by the above code:
// {
// "success": true
// }
NSLog(@"%@",@"Example Completed.");
|