Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// [
// {
// "relation": [
// "delegate_permission/common.handle_all_urls",
// "delegate_permission/common.get_login_creds"
// ],
// "target": {
// "namespace": "web",
// "site": "https://id.mycompany.com"
// }
// }
// ]
let jarr = CkoJsonArray()!
jarr.addObject(at: -1)
var jsonObj_1: CkoJsonObject? = jarr.object(at: jarr.size.intValue - 1)
jsonObj_1!.update("relation[0]", value: "delegate_permission/common.handle_all_urls")
jsonObj_1!.update("relation[1]", value: "delegate_permission/common.get_login_creds")
jsonObj_1!.update("target.namespace", value: "web")
jsonObj_1!.update("target.site", value: "https://id.mycompany.com")
jsonObj_1 = nil
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
let sbRequestBody = CkoStringBuilder()!
jarr.emitSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("PUT", url: "https://id.mycompany.com/.well-known/assetlinks.json", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-d '[
{
"relation": [
"delegate_permission/common.handle_all_urls",
"delegate_permission/common.get_login_creds"
],
"target": {
"namespace": "web",
"site": "https://id.mycompany.com"
}
}
]'
https://id.mycompany.com/.well-known/assetlinks.json
Postman Collection Item JSON
{
"name": "Step 1: Create or update assetlinks.json",
"request": {
"method": "PUT",
"header": [
],
"body": {
"mode": "raw",
"raw": "[\n {\n \"relation\": [\n \"delegate_permission/common.handle_all_urls\",\n \"delegate_permission/common.get_login_creds\"\n ],\n \"target\": {\n \"namespace\": \"web\",\n \"site\": \"https://id.mycompany.com\"\n }\n }\n]",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{customDomainUrl}}/.well-known/assetlinks.json",
"host": [
"{{customDomainUrl}}"
],
"path": [
".well-known",
"assetlinks.json"
]
}
},
"response": [
]
}