Chilkat Online Tools

PowerBuilder / ForgeRock Identity Cloud Collection / Step 3: Get Session Info

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Username
string ls_UniversalId
string ls_Realm
string ls_LatestAccessTime
string ls_MaxIdleExpirationTime
string ls_MaxSessionExpirationTime
string ls_AMCtxId

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.SetRequestHeader("{{cookieName}}","{{demoSSOToken}}")
loo_Http.SetRequestHeader("Accept-API-Version","resource=2.0, protocol=1.0")

loo_Resp = loo_Http.QuickRequest("POST","https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/sessions?_action=getSessionInfo")
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    return
end if

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Resp.GetBodySb(loo_SbResponseBody)

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Resp
    destroy loo_Http
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

destroy loo_Resp

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

// {
//   "username": "demo",
//   "universalId": "id=demo,ou=user,dc=openam,dc=forgerock,dc=org",
//   "realm": "/",
//   "latestAccessTime": "2020-08-12T14:23:23Z",
//   "maxIdleExpirationTime": "2020-08-12T14:53:23Z",
//   "maxSessionExpirationTime": "2020-08-12T16:23:22Z",
//   "properties": {
//     "AMCtxId": "e2fe9cef-dce1-41e4-ab15-0c85a88bf8cd-66167"
//   }
// }

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

ls_Username = loo_JResp.StringOf("username")
ls_UniversalId = loo_JResp.StringOf("universalId")
ls_Realm = loo_JResp.StringOf("realm")
ls_LatestAccessTime = loo_JResp.StringOf("latestAccessTime")
ls_MaxIdleExpirationTime = loo_JResp.StringOf("maxIdleExpirationTime")
ls_MaxSessionExpirationTime = loo_JResp.StringOf("maxSessionExpirationTime")
ls_AMCtxId = loo_JResp.StringOf("properties.AMCtxId")


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -X POST
	-H "{{cookieName}}: {{demoSSOToken}}"
	-H "Accept-API-Version: resource=2.0, protocol=1.0"
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/sessions?_action=getSessionInfo

Postman Collection Item JSON

{
  "name": "Step 3: Get Session Info",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "// Tests",
          "",
          "pm.test(\"Status code is 200\", () => {",
          "  pm.expect(pm.response.code).to.eql(200);",
          "});",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "protocolProfileBehavior": {
    "disableCookies": true
  },
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "{{cookieName}}",
        "value": "{{demoSSOToken}}",
        "description": "Specifies the session token to query. To obtain information about a different token, specify it in the `tokenId` parameter of the POST body."
      },
      {
        "description": "Specifies the version of the `/json/sessions` endpoint to use.",
        "key": "Accept-API-Version",
        "type": "text",
        "value": "resource=2.0, protocol=1.0"
      }
    ],
    "url": {
      "raw": "{{amUrl}}/json{{realm}}/sessions?_action=getSessionInfo",
      "host": [
        "{{amUrl}}"
      ],
      "path": [
        "json{{realm}}",
        "sessions"
      ],
      "query": [
        {
          "key": "_action",
          "value": "getSessionInfo",
          "description": "Specifies a request to get information about a session, such as idle times."
        }
      ]
    },
    "description": "Once the user has completed all the required callbacks, they are issued their session token. You can use the token to obtain information about the session.\n\nTo obtain information about a session, perform an HTTP POST to the `/json/sessions/` endpoint, using the `getSessionInfo` action. \n\nThe endpoint returns information about the provided session token by default. \n\n> Tip: \n>\n> To get information about a different session token, include it in the POST body, as the value of the `tokenId` parameter."
  },
  "response": [
    {
      "name": "Success",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "iPlanetDirectoryPro",
            "value": "{{demoSSOToken}}",
            "description": "Specifies the session token to query. To obtain information about a different token, specify it in the `tokenId` parameter of the POST body."
          },
          {
            "description": "Specifies the version of the `/json/sessions` endpoint to use.",
            "key": "Accept-API-Version",
            "type": "text",
            "value": "resource=2.0, protocol=1.0"
          }
        ],
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/sessions?_action=getSessionInfo",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "sessions"
          ],
          "query": [
            {
              "key": "_action",
              "value": "getSessionInfo",
              "description": "Specifies a request to get information about a session, such as idle times."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "Cache-Control",
          "value": "private"
        },
        {
          "key": "Cache-Control",
          "value": "no-cache, no-store, must-revalidate"
        },
        {
          "key": "Content-API-Version",
          "value": "resource=2.2"
        },
        {
          "key": "Expires",
          "value": "0"
        },
        {
          "key": "Pragma",
          "value": "no-cache"
        },
        {
          "key": "Content-Type",
          "value": "application/json;charset=UTF-8"
        },
        {
          "key": "Content-Length",
          "value": "302"
        },
        {
          "key": "Date",
          "value": "Wed, 12 Aug 2020 14:23:25 GMT"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"username\": \"demo\",\n    \"universalId\": \"id=demo,ou=user,dc=openam,dc=forgerock,dc=org\",\n    \"realm\": \"/\",\n    \"latestAccessTime\": \"2020-08-12T14:23:23Z\",\n    \"maxIdleExpirationTime\": \"2020-08-12T14:53:23Z\",\n    \"maxSessionExpirationTime\": \"2020-08-12T16:23:22Z\",\n    \"properties\": {\n        \"AMCtxId\": \"e2fe9cef-dce1-41e4-ab15-0c85a88bf8cd-66167\"\n    }\n}"
    }
  ]
}