Chilkat Online Tools

C++ / ForgeRock Identity Cloud Collection / Step 1: Create or update assetlinks.json

Back to Collection Items

#include <CkHttp.h>
#include <CkJsonArray.h>
#include <CkJsonObject.h>
#include <CkStringBuilder.h>
#include <CkHttpResponse.h>

void ChilkatSample(void)
    {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http;
    bool success;

    // 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"
    //     }
    //   }
    // ]

    CkJsonArray jarr;

    jarr.AddObjectAt(-1);
    CkJsonObject *jsonObj_1 = jarr.ObjectAt(jarr.get_Size() - 1);
    jsonObj_1->UpdateString("relation[0]","delegate_permission/common.handle_all_urls");
    jsonObj_1->UpdateString("relation[1]","delegate_permission/common.get_login_creds");
    jsonObj_1->UpdateString("target.namespace","web");
    jsonObj_1->UpdateString("target.site","https://id.mycompany.com");
    delete jsonObj_1;

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken("<access_token>");

    CkStringBuilder sbRequestBody;
    jarr.EmitSb(sbRequestBody);

    CkHttpResponse *resp = http.PTextSb("PUT","https://id.mycompany.com/.well-known/assetlinks.json",sbRequestBody,"utf-8","application/json",false,false);
    if (http.get_LastMethodSuccess() == false) {
        std::cout << http.lastErrorText() << "\r\n";
        return;
    }

    std::cout << resp->get_StatusCode() << "\r\n";
    std::cout << resp->bodyStr() << "\r\n";
    delete resp;
    }

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": [
  ]
}