(Objective-C) Shopify Receive Count of All Products in a Collection
Get a count of all products of a given collection
#import <CkoRest.h>
#import <CkoStringBuilder.h>
#import <CkoJsonObject.h>
CkoRest *rest = [[CkoRest alloc] init];
BOOL success;
[rest SetAuthBasic: @"SHOPIFY_PRIVATE_API_KEY" password: @"SHOPIFY_PRIVATE_API_KEY"];
success = [rest Connect: @"chilkat.myshopify.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: @"/admin/products/count.json?collection_id=841564295 " 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 count;
count = [[json IntOf: @"count"] intValue];
// A sample JSON response body that is parsed by the above code:
// {
// "count": 1
// }
NSLog(@"%@",@"Example Completed.");
|