Chilkat Online Tools

unicodeC / ForgeRock Identity Cloud Collection / Step 1: Obtain an SSO Token as a Demo User

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkJsonObjectW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *tokenId;
    const wchar_t *successUrl;
    const wchar_t *realm;

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

    http = CkHttpW_Create();

    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
    CkHttpW_SetRequestHeader(http,L"Accept-API-Version",L"resource=2.1");
    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");
    CkHttpW_SetRequestHeader(http,L"X-OpenAM-Username",L"{{postmanDemoUsername}}");
    CkHttpW_SetRequestHeader(http,L"X-OpenAM-Password",L"{{postmanDemoPassword}}");

    resp = CkHttpW_QuickRequest(http,L"POST",L"https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/authenticate?authIndexType=service&authIndexValue=PasswordGrant");
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(resp);

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "tokenId": "JyDQQGqJbwjlvdHIx7ZHSbnZWGw.*AAJTSQACMDEAAlNLABxLMWUzMm5SL1JTdzZEblNFQUlCakpTMklZRU09AAR0eXBlAANDVFMAAlMxAAA.*",
    //   "successUrl": "/openam/console",
    //   "realm": "/"
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    tokenId = CkJsonObjectW_stringOf(jResp,L"tokenId");
    successUrl = CkJsonObjectW_stringOf(jResp,L"successUrl");
    realm = CkJsonObjectW_stringOf(jResp,L"realm");


    CkHttpW_Dispose(http);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "X-OpenAM-Username: {{postmanDemoUsername}}"
	-H "X-OpenAM-Password: {{postmanDemoPassword}}"
	-H "Content-Type: application/json"
	-H "Accept-API-Version: resource=2.1"
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/authenticate?authIndexType=service&authIndexValue=PasswordGrant

Postman Collection Item JSON

{
  "name": "Step 1: Obtain an SSO Token as a Demo User",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "const jsonData = JSON.parse(responseBody);",
          "",
          "if(jsonData.tokenId && jsonData.tokenId != \"\"){",
          "    pm.globals.set(\"demoSSOToken\", jsonData.tokenId);",
          "}",
          "",
          "// Tests",
          "",
          "pm.test(\"Status code is 200\", () => {",
          "  pm.expect(pm.response.code).to.eql(200);",
          "});",
          "",
          "pm.test(\"Response contains tokenId\", function () {",
          "    pm.expect(jsonData.tokenId).to.be.a(\"string\");",
          "});",
          ""
        ],
        "type": "text/javascript"
      }
    },
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "protocolProfileBehavior": {
    "disableCookies": false,
    "followOriginalHttpMethod": true,
    "removeRefererHeaderOnRedirect": true
  },
  "request": {
    "method": "POST",
    "header": [
      {
        "description": "Username for the demo user.",
        "key": "X-OpenAM-Username",
        "value": "{{postmanDemoUsername}}"
      },
      {
        "description": "Password for the demo user.",
        "key": "X-OpenAM-Password",
        "value": "{{postmanDemoPassword}}"
      },
      {
        "description": "The media type of the resource.",
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "description": "This collection documents version 2.1 of the authentication resource.",
        "key": "Accept-API-Version",
        "value": "resource=2.1"
      }
    ],
    "url": {
      "raw": "{{amUrl}}/json{{realm}}/authenticate?authIndexType=service&authIndexValue=PasswordGrant",
      "host": [
        "{{amUrl}}"
      ],
      "path": [
        "json{{realm}}",
        "authenticate"
      ],
      "query": [
        {
          "key": "authIndexType",
          "value": "service"
        },
        {
          "key": "authIndexValue",
          "value": "PasswordGrant"
        }
      ]
    },
    "description": "Log in to the authorization server using the credentials of the demo user.\n\nNote: delete your cookies before using this call.\n\n"
  },
  "response": [
    {
      "name": "Example",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Username for the demo user.",
            "key": "X-OpenAM-Username",
            "value": "{{postmanDemoUsername}}"
          },
          {
            "description": "Password for the demo user.",
            "key": "X-OpenAM-Password",
            "value": "{{postmanDemoPassword}}"
          },
          {
            "description": "The media type of the resource.",
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "description": "This collection documents version 2.1 of the authentication resource.",
            "key": "Accept-API-Version",
            "value": "resource=2.1"
          }
        ],
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/authenticate",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "authenticate"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "Cache-Control",
          "value": "private"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache, no-store, must-revalidate"
        },
        {
          "key": "Set-Cookie",
          "value": "amlbcookie=01; Path=/; Domain=example.com; HttpOnly"
        },
        {
          "key": "Set-Cookie",
          "value": "iPlanetDirectoryPro=sOpI1RvbCgvlQk.*AAJTSQACMDEA.*; Path=/; Domain=example.com; HttpOnly"
        },
        {
          "key": "Content-API-Version",
          "value": "resource=2.1"
        },
        {
          "key": "Expires",
          "value": "0"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "Content-Length",
          "value": "167"
        },
        {
          "key": "Date",
          "value": "Thu, 13 Aug 2020 12:18:57 GMT"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"tokenId\": \"JyDQQGqJbwjlvdHIx7ZHSbnZWGw.*AAJTSQACMDEAAlNLABxLMWUzMm5SL1JTdzZEblNFQUlCakpTMklZRU09AAR0eXBlAANDVFMAAlMxAAA.*\",\n    \"successUrl\": \"/openam/console\",\n    \"realm\": \"/\"\n}"
    }
  ]
}