Sample code for 30+ languages & platforms
Objective-C

Simple GET using REST

See more REST Examples

Demonstrates how to do a simple HTTP GET request using REST.

Chilkat Objective-C Downloads

Objective-C
#import <CkoRest.h>
#import <NSString.h>

BOOL success = NO;

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

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

// Connect to the REST server.
BOOL bTls = YES;
int port = 443;
BOOL bAutoReconnect = YES;
success = [rest Connect: @"my-store.com" port: [NSNumber numberWithInt: port] tls: bTls autoReconnect: bAutoReconnect];

NSString *responseJson = [rest FullRequestNoBody: @"GET" uriPath: @"/wp-json/wc/v1/products?consumer_key=YOUR_CONSUMER_KEY&consumer_secret=YOUR_CONSUMER_SECRET"];
if (rest.LastMethodSuccess != YES) {
    NSLog(@"%@",rest.LastErrorText);
    return;
}

NSLog(@"%@",responseJson);
NSLog(@"%@",@"----");

// We can alternatively do this:
[rest ClearAllQueryParams];
[rest AddQueryParam: @"consumer_key" value: @"YOUR_CONSUMER_KEY"];
[rest AddQueryParam: @"consumer_secret" value: @"YOUR_CONSUMER_SECRET"];
responseJson = [rest FullRequestNoBody: @"GET" uriPath: @"/wp-json/wc/v1/products"];
if (rest.LastMethodSuccess != YES) {
    NSLog(@"%@",rest.LastErrorText);
    return;
}

NSLog(@"%@",responseJson);