Chilkat Online Tools

ListSkillsStoreSkillsByCategory Swift3 Example

Alexa for Business

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

    let rest = CkoRest()!
    var success: Bool

    let authAws = CkoAuthAws()!
    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 = "a4b"
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.setAuthAws(authAws)

    // URL: https://a4b.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.connect("a4b.us-west-2.amazonaws.com", port: 443, tls: true, autoReconnect: true)
    if success != true {
        print("ConnectFailReason: \(rest.connectFailReason.intValue)")
        print("\(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

    let json = CkoJsonObject()!
    json.updateInt("CategoryId", value: 123)
    json.updateInt("MaxResults", value: 123)
    json.update("NextToken", value: "string")

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

    // {
    //   "CategoryId": number,
    //   "MaxResults": number,
    //   "NextToken": "string"
    // }

    rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
    rest.addHeader("X-Amz-Target", value: "AlexaForBusiness.ListSkillsStoreSkillsByCategory")

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)
    let sbResponseBody = CkoStringBuilder()!
    success = rest.fullRequestSb("POST", uriPath: "/", requestBody: sbRequestBody, responseBody: sbResponseBody)
    if success != true {
        print("\(rest.lastErrorText!)")
        return
    }

    var respStatusCode: Int = rest.responseStatusCode.intValue
    print("response status code = \(respStatusCode)")
    if respStatusCode != 200 {
        print("Response Header:")
        print("\(rest.responseHeader!)")
        print("Response Body:")
        print("\(sbResponseBody.getAsString()!)")
        return
    }

    let jResp = CkoJsonObject()!
    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

    var IconUrl: String?
    var ShortDescription: String?
    var DeveloperName: String?
    var v_Email: String?
    var PrivacyPolicy: String?
    var v_Url: String?
    var EndUserLicenseAgreement: String?
    var InvocationPhrase: String?
    var ProductDescription: String?
    var ReleaseDate: String?
    var v_String: String?
    var SkillId: String?
    var SkillName: String?
    var SupportsLinking: Int
    var j: Int
    var count_j: Int
    var strVal: String?

    var NextToken: String? = jResp.string(of: "NextToken")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "SkillsStoreSkills").intValue
    while i < count_i {
        jResp.i = i
        IconUrl = jResp.string(of: "SkillsStoreSkills[i].IconUrl")
        ShortDescription = jResp.string(of: "SkillsStoreSkills[i].ShortDescription")
        DeveloperName = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.DeveloperInfo.DeveloperName")
        v_Email = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.DeveloperInfo.Email")
        PrivacyPolicy = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.DeveloperInfo.PrivacyPolicy")
        v_Url = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.DeveloperInfo.Url")
        EndUserLicenseAgreement = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.EndUserLicenseAgreement")
        InvocationPhrase = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.InvocationPhrase")
        ProductDescription = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.ProductDescription")
        ReleaseDate = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.ReleaseDate")
        v_String = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.Reviews.string")
        SkillId = jResp.string(of: "SkillsStoreSkills[i].SkillId")
        SkillName = jResp.string(of: "SkillsStoreSkills[i].SkillName")
        SupportsLinking = jResp.int(of: "SkillsStoreSkills[i].SupportsLinking").intValue
        j = 0
        count_j = jResp.size(ofArray: "SkillsStoreSkills[i].SampleUtterances").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "SkillsStoreSkills[i].SampleUtterances[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "SkillsStoreSkills[i].SkillDetails.BulletPoints").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.BulletPoints[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "SkillsStoreSkills[i].SkillDetails.GenericKeywords").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.GenericKeywords[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "SkillsStoreSkills[i].SkillDetails.NewInThisVersionBulletPoints").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.NewInThisVersionBulletPoints[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "SkillsStoreSkills[i].SkillDetails.SkillTypes").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "SkillsStoreSkills[i].SkillDetails.SkillTypes[j]")
            j = j + 1
        }

        i = i + 1
    }

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

    // {
    //   "NextToken": "string",
    //   "SkillsStoreSkills": [
    //     {
    //       "IconUrl": "string",
    //       "SampleUtterances": [
    //         "string"
    //       ],
    //       "ShortDescription": "string",
    //       "SkillDetails": {
    //         "BulletPoints": [
    //           "string"
    //         ],
    //         "DeveloperInfo": {
    //           "DeveloperName": "string",
    //           "Email": "string",
    //           "PrivacyPolicy": "string",
    //           "Url": "string"
    //         },
    //         "EndUserLicenseAgreement": "string",
    //         "GenericKeywords": [
    //           "string"
    //         ],
    //         "InvocationPhrase": "string",
    //         "NewInThisVersionBulletPoints": [
    //           "string"
    //         ],
    //         "ProductDescription": "string",
    //         "ReleaseDate": "string",
    //         "Reviews": {
    //           "string": "string"
    //         },
    //         "SkillTypes": [
    //           "string"
    //         ]
    //       },
    //       "SkillId": "string",
    //       "SkillName": "string",
    //       "SupportsLinking": boolean
    //     }
    //   ]
    // }

}