Chilkat Online Tools

GetLicense Objective-C Example

AWS License Manager

#import <CkoRest.h>
#import <CkoAuthAws.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <NSString.h>

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

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

CkoAuthAws *authAws = [[CkoAuthAws alloc] init];
authAws.AccessKey = @"AWS_ACCESS_KEY";
authAws.SecretKey = @"AWS_SECRET_KEY";

// Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
authAws.Region = @"us-west-2";
authAws.ServiceName = @"license-manager";
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
[rest SetAuthAws: authAws];

// URL: https://license-manager.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = [rest Connect: @"license-manager.us-west-2.amazonaws.com" port: [NSNumber numberWithInt: 443] tls: YES autoReconnect: YES];
if (success != YES) {
    NSLog(@"%@%d",@"ConnectFailReason: ",[rest.ConnectFailReason intValue]);
    NSLog(@"%@",rest.LastErrorText);
    return;
}

// The following code creates the JSON request body.
// The JSON created by this code is shown below.

// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"LicenseArn" value: @"string"];
[json UpdateString: @"Version" value: @"string"];

// The JSON request body created by the above code:

// {
//   "LicenseArn": "string",
//   "Version": "string"
// }

[rest AddHeader: @"Content-Type" value: @"application/x-amz-json-1.1"];
[rest AddHeader: @"X-Amz-Target" value: @"AWSLicenseManager.GetLicense"];

CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];
CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
success = [rest FullRequestSb: @"POST" uriPath: @"/" requestBody: sbRequestBody responseBody: sbResponseBody];
if (success != YES) {
    NSLog(@"%@",rest.LastErrorText);
    return;
}

int respStatusCode = [rest.ResponseStatusCode intValue];
NSLog(@"%@%d",@"response status code = ",respStatusCode);
if (respStatusCode != 200) {
    NSLog(@"%@",@"Response Header:");
    NSLog(@"%@",rest.ResponseHeader);
    NSLog(@"%@",@"Response Body:");
    NSLog(@"%@",[sbResponseBody GetAsString]);
    return;
}

CkoJsonObject *jResp = [[CkoJsonObject alloc] init];
[jResp LoadSb: sbResponseBody];

// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.

// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

int AllowCheckIn;
int MaxCount;
int Overage;
NSString *Unit = 0;
NSString *Value = 0;

NSString *Beneficiary = [jResp StringOf: @"License.Beneficiary"];
int AllowEarlyCheckIn = [[jResp IntOf: @"License.ConsumptionConfiguration.BorrowConfiguration.AllowEarlyCheckIn"] intValue];
int MaxTimeToLiveInMinutes = [[jResp IntOf: @"License.ConsumptionConfiguration.BorrowConfiguration.MaxTimeToLiveInMinutes"] intValue];
int ProvisionalConfigurationMaxTimeToLiveInMinutes = [[jResp IntOf: @"License.ConsumptionConfiguration.ProvisionalConfiguration.MaxTimeToLiveInMinutes"] intValue];
NSString *RenewType = [jResp StringOf: @"License.ConsumptionConfiguration.RenewType"];
NSString *CreateTime = [jResp StringOf: @"License.CreateTime"];
NSString *HomeRegion = [jResp StringOf: @"License.HomeRegion"];
NSString *KeyFingerprint = [jResp StringOf: @"License.Issuer.KeyFingerprint"];
NSString *Name = [jResp StringOf: @"License.Issuer.Name"];
NSString *SignKey = [jResp StringOf: @"License.Issuer.SignKey"];
NSString *LicenseArn = [jResp StringOf: @"License.LicenseArn"];
NSString *LicenseName = [jResp StringOf: @"License.LicenseName"];
NSString *ProductName = [jResp StringOf: @"License.ProductName"];
NSString *ProductSKU = [jResp StringOf: @"License.ProductSKU"];
NSString *Status = [jResp StringOf: @"License.Status"];
NSString *Begin = [jResp StringOf: @"License.Validity.Begin"];
NSString *v_End = [jResp StringOf: @"License.Validity.End"];
NSString *Version = [jResp StringOf: @"License.Version"];
int i = 0;
int count_i = [[jResp SizeOfArray: @"License.Entitlements"] intValue];
while (i < count_i) {
    jResp.I = [NSNumber numberWithInt: i];
    AllowCheckIn = [[jResp IntOf: @"License.Entitlements[i].AllowCheckIn"] intValue];
    MaxCount = [[jResp IntOf: @"License.Entitlements[i].MaxCount"] intValue];
    Name = [jResp StringOf: @"License.Entitlements[i].Name"];
    Overage = [[jResp IntOf: @"License.Entitlements[i].Overage"] intValue];
    Unit = [jResp StringOf: @"License.Entitlements[i].Unit"];
    Value = [jResp StringOf: @"License.Entitlements[i].Value"];
    i = i + 1;
}

i = 0;
count_i = [[jResp SizeOfArray: @"License.LicenseMetadata"] intValue];
while (i < count_i) {
    jResp.I = [NSNumber numberWithInt: i];
    Name = [jResp StringOf: @"License.LicenseMetadata[i].Name"];
    Value = [jResp StringOf: @"License.LicenseMetadata[i].Value"];
    i = i + 1;
}

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

// {
//   "License": {
//     "Beneficiary": "string",
//     "ConsumptionConfiguration": {
//       "BorrowConfiguration": {
//         "AllowEarlyCheckIn": boolean,
//         "MaxTimeToLiveInMinutes": number
//       },
//       "ProvisionalConfiguration": {
//         "MaxTimeToLiveInMinutes": number
//       },
//       "RenewType": "string"
//     },
//     "CreateTime": "string",
//     "Entitlements": [
//       {
//         "AllowCheckIn": boolean,
//         "MaxCount": number,
//         "Name": "string",
//         "Overage": boolean,
//         "Unit": "string",
//         "Value": "string"
//       }
//     ],
//     "HomeRegion": "string",
//     "Issuer": {
//       "KeyFingerprint": "string",
//       "Name": "string",
//       "SignKey": "string"
//     },
//     "LicenseArn": "string",
//     "LicenseMetadata": [
//       {
//         "Name": "string",
//         "Value": "string"
//       }
//     ],
//     "LicenseName": "string",
//     "ProductName": "string",
//     "ProductSKU": "string",
//     "Status": "string",
//     "Validity": {
//       "Begin": "string",
//       "End": "string"
//     },
//     "Version": "string"
//   }
// }