Sample code for 30+ languages & platforms
Objective-C

SugarCRM Logout

See more SugarCRM Examples

Demonstrates how to logout of a session.

Chilkat Objective-C Downloads

Objective-C
#import <CkoRest.h>
#import <CkoStringBuilder.h>
#import <CkoJsonObject.h>

BOOL success = NO;

CkoRest *rest = [[CkoRest alloc] init];

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.

success = [json BoolOf: @"success"];

// A sample JSON response body that is parsed by the above code:

// {
//   "success": true
// }

NSLog(@"%@",@"Example Completed.");