Chilkat Online Tools

PureBasic / ForgeRock Identity Cloud Collection / Step 2e: Handle Device Profile Callback

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    ; Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    ; The following JSON is sent in the request body.

    ; {
    ;   "authId": "{{authId}}",
    ;   "callbacks": [
    ;     {
    ;       "type": "DeviceProfileCallback",
    ;       "output": [
    ;         {
    ;           "name": "metadata",
    ;           "value": true
    ;         },
    ;         {
    ;           "name": "location",
    ;           "value": true
    ;         },
    ;         {
    ;           "name": "message",
    ;           "value": "Collecting....."
    ;         }
    ;       ],
    ;       "input": [
    ;         {
    ;           "name": "IDToken1",
    ;           "value": "{\r\n   \"identifier\":\"aec3fe784...o3Xjiizyb9=\",\r\n   \"alias\":\"Example Pixel 3 XL\",\r\n   \"metadata\":{\r\n      \"platform\":{\r\n         \"platform\":\"Android\",\r\n         \"version\":28,\r\n         \"device\":\"generic_x86_arm\",\r\n         \"deviceName\":\"AOSP on IA Emulator\",\r\n         \"model\":\"AOSP on IA Emulator\",\r\n         \"brand\":\"google\",\r\n         \"locale\":\"en_US\",\r\n         \"timeZone\":\"America\/Vancouver\",\r\n         \"jailBreakScore\":1\r\n      },\r\n      \"hardware\":{\r\n         \"hardware\":\"ranchu\",\r\n         \"manufacturer\":\"Google\",\r\n         \"storage\":774,\r\n         \"memory\":1494,\r\n         \"cpu\":4,\r\n         \"display\":{\r\n            \"width\":1440,\r\n            \"height\":2621,\r\n            \"orientation\":1\r\n         },\r\n         \"camera\":{\r\n            \"numberOfCameras\":2\r\n         }\r\n      },\r\n      \"browser\":{\r\n         \"agent\":\"Dalvik\/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build\/PSR1.180720.117)\"\r\n      },\r\n      \"bluetooth\":{\r\n         \"supported\":false\r\n      },\r\n      \"network\":{\r\n         \"connected\":true\r\n      },\r\n      \"telephony\":{\r\n         \"networkCountryIso\":\"us\",\r\n         \"carrierName\":\"Android\"\r\n      }\r\n   },\r\n   \"location\":{\r\n      \"latitude\":{{$randomLatitude}},\r\n      \"Longitude\":{{$randomLongitude}}\r\n   }\r\n}"
    ;         }
    ;       ]
    ;     }
    ;   ]
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"authId","{{authId}}")
    CkJsonObject::ckUpdateString(json,"callbacks[0].type","DeviceProfileCallback")
    CkJsonObject::ckUpdateString(json,"callbacks[0].output[0].name","metadata")
    CkJsonObject::ckUpdateBool(json,"callbacks[0].output[0].value",1)
    CkJsonObject::ckUpdateString(json,"callbacks[0].output[1].name","location")
    CkJsonObject::ckUpdateBool(json,"callbacks[0].output[1].value",1)
    CkJsonObject::ckUpdateString(json,"callbacks[0].output[2].name","message")
    CkJsonObject::ckUpdateString(json,"callbacks[0].output[2].value","Collecting.....")
    CkJsonObject::ckUpdateString(json,"callbacks[0].input[0].name","IDToken1")
    CkJsonObject::ckUpdateString(json,"callbacks[0].input[0].value","{" + Chr(13) + Chr(10) + "   " + Chr(34) + "identifier" + Chr(34) + ":" + Chr(34) + "aec3fe784...o3Xjiizyb9=" + Chr(34) + "," + Chr(13) + Chr(10) + "   " + Chr(34) + "alias" + Chr(34) + ":" + Chr(34) + "Example Pixel 3 XL" + Chr(34) + "," + Chr(13) + Chr(10) + "   " + Chr(34) + "metadata" + Chr(34) + ":{" + Chr(13) + Chr(10) + "      " + Chr(34) + "platform" + Chr(34) + ":{" + Chr(13) + Chr(10) + "         " + Chr(34) + "platform" + Chr(34) + ":" + Chr(34) + "Android" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "version" + Chr(34) + ":28," + Chr(13) + Chr(10) + "         " + Chr(34) + "device" + Chr(34) + ":" + Chr(34) + "generic_x86_arm" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "deviceName" + Chr(34) + ":" + Chr(34) + "AOSP on IA Emulator" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "model" + Chr(34) + ":" + Chr(34) + "AOSP on IA Emulator" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "brand" + Chr(34) + ":" + Chr(34) + "google" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "locale" + Chr(34) + ":" + Chr(34) + "en_US" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "timeZone" + Chr(34) + ":" + Chr(34) + "America/Vancouver" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "jailBreakScore" + Chr(34) + ":1" + Chr(13) + Chr(10) + "      }," + Chr(13) + Chr(10) + "      " + Chr(34) + "hardware" + Chr(34) + ":{" + Chr(13) + Chr(10) + "         " + Chr(34) + "hardware" + Chr(34) + ":" + Chr(34) + "ranchu" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "manufacturer" + Chr(34) + ":" + Chr(34) + "Google" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "storage" + Chr(34) + ":774," + Chr(13) + Chr(10) + "         " + Chr(34) + "memory" + Chr(34) + ":1494," + Chr(13) + Chr(10) + "         " + Chr(34) + "cpu" + Chr(34) + ":4," + Chr(13) + Chr(10) + "         " + Chr(34) + "display" + Chr(34) + ":{" + Chr(13) + Chr(10) + "            " + Chr(34) + "width" + Chr(34) + ":1440," + Chr(13) + Chr(10) + "            " + Chr(34) + "height" + Chr(34) + ":2621," + Chr(13) + Chr(10) + "            " + Chr(34) + "orientation" + Chr(34) + ":1" + Chr(13) + Chr(10) + "         }," + Chr(13) + Chr(10) + "         " + Chr(34) + "camera" + Chr(34) + ":{" + Chr(13) + Chr(10) + "            " + Chr(34) + "numberOfCameras" + Chr(34) + ":2" + Chr(13) + Chr(10) + "         }" + Chr(13) + Chr(10) + "      }," + Chr(13) + Chr(10) + "      " + Chr(34) + "browser" + Chr(34) + ":{" + Chr(13) + Chr(10) + "         " + Chr(34) + "agent" + Chr(34) + ":" + Chr(34) + "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)\Chr(13) + Chr(10) + "      }," + Chr(13) + Chr(10) + "      " + Chr(34) + "bluetooth" + Chr(34) + ":{" + Chr(13) + Chr(10) + "         " + Chr(34) + "supported" + Chr(34) + ":false" + Chr(13) + Chr(10) + "      }," + Chr(13) + Chr(10) + "      " + Chr(34) + "network" + Chr(34) + ":{" + Chr(13) + Chr(10) + "         " + Chr(34) + "connected" + Chr(34) + ":true" + Chr(13) + Chr(10) + "      }," + Chr(13) + Chr(10) + "      " + Chr(34) + "telephony" + Chr(34) + ":{" + Chr(13) + Chr(10) + "         " + Chr(34) + "networkCountryIso" + Chr(34) + ":" + Chr(34) + "us" + Chr(34) + "," + Chr(13) + Chr(10) + "         " + Chr(34) + "carrierName" + Chr(34) + ":" + Chr(34) + "Android\Chr(13) + Chr(10) + "      }" + Chr(13) + Chr(10) + "   }," + Chr(13) + Chr(10) + "   " + Chr(34) + "location" + Chr(34) + ":{" + Chr(13) + Chr(10) + "      " + Chr(34) + "latitude" + Chr(34) + ":{{$randomLatitude}}," + Chr(13) + Chr(10) + "      " + Chr(34) + "Longitude" + Chr(34) + ":{{$randomLongitude}}" + Chr(13) + Chr(10) + "   }" + Chr(13) + Chr(10) + "}")

    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")
    CkHttp::ckSetRequestHeader(http,"Accept-API-Version","resource=2.0, protocol=1.0")

    resp.i = CkHttp::ckPostJson3(http,"https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/authenticate?authIndexType=service&authIndexValue=Login","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkHttpResponse::ckGetBodySb(resp,sbResponseBody)

    jResp.i = CkJsonObject::ckCreate()
    If jResp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jResp,sbResponseBody)
    CkJsonObject::setCkEmitCompact(jResp, 0)

    Debug "Response Body:"
    Debug CkJsonObject::ckEmit(jResp)

    respStatusCode.i = CkHttpResponse::ckStatusCode(resp)
    Debug "Response Status Code = " + Str(respStatusCode)
    If respStatusCode >= 400
        Debug "Response Header:"
        Debug CkHttpResponse::ckHeader(resp)
        Debug "Failed."
        CkHttpResponse::ckDispose(resp)

        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbResponseBody)
        CkJsonObject::ckDispose(jResp)
        ProcedureReturn
    EndIf

    CkHttpResponse::ckDispose(resp)

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

    ; {
    ;   "tokenId": "N60dPV99pcqVVI.*AAJTSQACMDEAAANDVFMAAlMxAAA.*",
    ;   "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

    tokenId.s = CkJsonObject::ckStringOf(jResp,"tokenId")
    successUrl.s = CkJsonObject::ckStringOf(jResp,"successUrl")
    realm.s = CkJsonObject::ckStringOf(jResp,"realm")


    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "Accept-API-Version: resource=2.0, protocol=1.0"
	-d '{
    "authId": "{{authId}}",
    "callbacks": [
        {
            "type": "DeviceProfileCallback",
            "output": [
                {
                    "name": "metadata",
                    "value": true
                },
                {
                    "name": "location",
                    "value": true
                },
                {
                    "name": "message",
                    "value": "Collecting....."
                }
            ],
            "input": [
                {
                    "name": "IDToken1",
                    "value": "{\r\n   \"identifier\":\"aec3fe784...o3Xjiizyb9=\",\r\n   \"alias\":\"Example Pixel 3 XL\",\r\n   \"metadata\":{\r\n      \"platform\":{\r\n         \"platform\":\"Android\",\r\n         \"version\":28,\r\n         \"device\":\"generic_x86_arm\",\r\n         \"deviceName\":\"AOSP on IA Emulator\",\r\n         \"model\":\"AOSP on IA Emulator\",\r\n         \"brand\":\"google\",\r\n         \"locale\":\"en_US\",\r\n         \"timeZone\":\"America\/Vancouver\",\r\n         \"jailBreakScore\":1\r\n      },\r\n      \"hardware\":{\r\n         \"hardware\":\"ranchu\",\r\n         \"manufacturer\":\"Google\",\r\n         \"storage\":774,\r\n         \"memory\":1494,\r\n         \"cpu\":4,\r\n         \"display\":{\r\n            \"width\":1440,\r\n            \"height\":2621,\r\n            \"orientation\":1\r\n         },\r\n         \"camera\":{\r\n            \"numberOfCameras\":2\r\n         }\r\n      },\r\n      \"browser\":{\r\n         \"agent\":\"Dalvik\/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build\/PSR1.180720.117)\"\r\n      },\r\n      \"bluetooth\":{\r\n         \"supported\":false\r\n      },\r\n      \"network\":{\r\n         \"connected\":true\r\n      },\r\n      \"telephony\":{\r\n         \"networkCountryIso\":\"us\",\r\n         \"carrierName\":\"Android\"\r\n      }\r\n   },\r\n   \"location\":{\r\n      \"latitude\":{{$randomLatitude}},\r\n      \"Longitude\":{{$randomLongitude}}\r\n   }\r\n}"
                }
            ]
        }
    ]
}'
https://<tenant-name>.forgeblocks.com/am/json/realms/root/realms/alpha/authenticate?authIndexType=service&authIndexValue=Login

Postman Collection Item JSON

{
  "name": "Step 2e: Handle Device Profile Callback",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "const JSONResponse = JSON.parse(responseBody);",
          "",
          "// Did request have a callback?",
          "if(JSONResponse.authId && JSONResponse.authId != \"\")",
          "{",
          "  // Set `authId` variable",
          "  pm.globals.set(\"authId\", JSONResponse.authId);",
          "  ",
          "  // Determine next request based on detected callbacks",
          "  frUtils.detectCallbacks(responseBody);",
          "}",
          "",
          "// Did request return SSO Token?",
          "if(JSONResponse.tokenId && JSONResponse.tokenId != \"\")",
          "{",
          "  // Set `demoSSOToken` variable",
          "  pm.globals.set(\"demoSSOToken\", JSONResponse.tokenId);",
          "",
          "  // Remove `authId` variable",
          "  pm.globals.unset(\"authId\");",
          "  ",
          "  // Skip to session info request",
          "  postman.setNextRequest(\"Step 3: Get Session Info\");",
          "}",
          "",
          "// Tests",
          "",
          "pm.test(\"Status code is 200\", () => {",
          "  pm.expect(pm.response.code).to.eql(200);",
          "});",
          "",
          "pm.test(\"Response contains tokenId or authId\", function () {",
          "    pm.expect(JSONResponse).to.have.any.keys('tokenId', 'authId');",
          "});",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "protocolProfileBehavior": {
    "disableCookies": true
  },
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "description": "Specifies that the `/json/authenticate` endpoint uses JSON format for requests."
      },
      {
        "key": "Accept-API-Version",
        "value": "resource=2.0, protocol=1.0",
        "description": "Specifies the version of the `/json/authenticate` endpoint to use."
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"authId\": \"{{authId}}\",\n    \"callbacks\": [\n        {\n            \"type\": \"DeviceProfileCallback\",\n            \"output\": [\n                {\n                    \"name\": \"metadata\",\n                    \"value\": true\n                },\n                {\n                    \"name\": \"location\",\n                    \"value\": true\n                },\n                {\n                    \"name\": \"message\",\n                    \"value\": \"Collecting.....\"\n                }\n            ],\n            \"input\": [\n                {\n                    \"name\": \"IDToken1\",\n                    \"value\": \"{\\r\\n   \\\"identifier\\\":\\\"aec3fe784...o3Xjiizyb9=\\\",\\r\\n   \\\"alias\\\":\\\"Example Pixel 3 XL\\\",\\r\\n   \\\"metadata\\\":{\\r\\n      \\\"platform\\\":{\\r\\n         \\\"platform\\\":\\\"Android\\\",\\r\\n         \\\"version\\\":28,\\r\\n         \\\"device\\\":\\\"generic_x86_arm\\\",\\r\\n         \\\"deviceName\\\":\\\"AOSP on IA Emulator\\\",\\r\\n         \\\"model\\\":\\\"AOSP on IA Emulator\\\",\\r\\n         \\\"brand\\\":\\\"google\\\",\\r\\n         \\\"locale\\\":\\\"en_US\\\",\\r\\n         \\\"timeZone\\\":\\\"America\\/Vancouver\\\",\\r\\n         \\\"jailBreakScore\\\":1\\r\\n      },\\r\\n      \\\"hardware\\\":{\\r\\n         \\\"hardware\\\":\\\"ranchu\\\",\\r\\n         \\\"manufacturer\\\":\\\"Google\\\",\\r\\n         \\\"storage\\\":774,\\r\\n         \\\"memory\\\":1494,\\r\\n         \\\"cpu\\\":4,\\r\\n         \\\"display\\\":{\\r\\n            \\\"width\\\":1440,\\r\\n            \\\"height\\\":2621,\\r\\n            \\\"orientation\\\":1\\r\\n         },\\r\\n         \\\"camera\\\":{\\r\\n            \\\"numberOfCameras\\\":2\\r\\n         }\\r\\n      },\\r\\n      \\\"browser\\\":{\\r\\n         \\\"agent\\\":\\\"Dalvik\\/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build\\/PSR1.180720.117)\\\"\\r\\n      },\\r\\n      \\\"bluetooth\\\":{\\r\\n         \\\"supported\\\":false\\r\\n      },\\r\\n      \\\"network\\\":{\\r\\n         \\\"connected\\\":true\\r\\n      },\\r\\n      \\\"telephony\\\":{\\r\\n         \\\"networkCountryIso\\\":\\\"us\\\",\\r\\n         \\\"carrierName\\\":\\\"Android\\\"\\r\\n      }\\r\\n   },\\r\\n   \\\"location\\\":{\\r\\n      \\\"latitude\\\":{{$randomLatitude}},\\r\\n      \\\"Longitude\\\":{{$randomLongitude}}\\r\\n   }\\r\\n}\"\n                }\n            ]\n        }\n    ]\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{amUrl}}/json{{realm}}/authenticate?authIndexType=service&authIndexValue={{loginJourney}}",
      "host": [
        "{{amUrl}}"
      ],
      "path": [
        "json{{realm}}",
        "authenticate"
      ],
      "query": [
        {
          "key": "authIndexType",
          "value": "service",
          "description": "Allows the request to configure the service (for example, an authentication tree) to use for this request."
        },
        {
          "key": "authIndexValue",
          "value": "{{loginJourney}}",
          "description": "Specifies the name of the service to use for this request.\nOverride this value using the `amAuthenticationTree` Postman variable."
        }
      ]
    },
    "description": "To respond to a callback, send back the whole JSON object with the missing `input` values filled.\n\nThis request shows how to respond to a `DeviceProfileCallback`.\n\nThe example data in the request body represents a Google Android emulator device."
  },
  "response": [
    {
      "name": "Success - authentication complete",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json",
            "description": "Specifies that the `/json/authenticate` endpoint uses JSON format for requests."
          },
          {
            "key": "Accept-API-Version",
            "value": "resource=2.0, protocol=1.0",
            "description": "Specifies the version of the `/json/authenticate` endpoint to use."
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"authId\": \"{{authId}}\",\n    \"callbacks\": [\n        {\n            \"type\": \"ChoiceCallback\",\n            \"output\": [\n                {\n                    \"name\": \"prompt\",\n                    \"value\": \"Succeed?\"\n                },\n                {\n                    \"name\": \"choices\",\n                    \"value\": [\n                        \"Yes\",\n                        \"No\"\n                    ]\n                },\n                {\n                    \"name\": \"defaultChoice\",\n                    \"value\": 0\n                }\n            ],\n            \"input\": [\n                {\n                    \"name\": \"IDToken1\",\n                    \"value\": 0\n                }\n            ]\n        }\n    ]\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{amUrl}}/json{{realm}}/authenticate?authIndexType=service&authIndexValue={{loginJourney}}",
          "host": [
            "{{amUrl}}"
          ],
          "path": [
            "json{{realm}}",
            "authenticate"
          ],
          "query": [
            {
              "key": "authIndexType",
              "value": "service",
              "description": "Allows the request to configure the service (for example, an authentication tree) to use for this request."
            },
            {
              "key": "authIndexValue",
              "value": "{{loginJourney}}",
              "description": "Specifies the name of the service to use for this request.\nOverride this value using the `amAuthenticationTree` Postman variable."
            }
          ]
        }
      },
      "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": "iPlanetDirectoryPro=N60dPVcmOADQN170-8799pcqVVI.*AAJTSQACMDEAAlNLABw5QThIM0ZJd3RKcmNyWWYxSzlPaGhzcllsUXM9AAR0eXBlAANDVFMAAlMxAAA.*; Path=/; Domain=example.com; HttpOnly"
        },
        {
          "key": "Set-Cookie",
          "value": "amlbcookie=01; 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": "Wed, 12 Aug 2020 14:10:41 GMT"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"tokenId\": \"N60dPV99pcqVVI.*AAJTSQACMDEAAANDVFMAAlMxAAA.*\",\n    \"successUrl\": \"/openam/console\",\n    \"realm\": \"/\"\n}"
    }
  ]
}