Chilkat Online Tools

unicodeC / Anypoint Platform APIs / Login to Anypoint Platform

Back to Collection Items

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

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkHttpRequestW req;
    HCkJsonObjectW jsonParam1;
    HCkJsonObjectW jsonParam2;
    HCkHttpResponseW resp;

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

    http = CkHttpW_Create();

    req = CkHttpRequestW_Create();

    jsonParam1 = CkJsonObjectW_Create();
    CkHttpRequestW_AddParam(req,L"username",CkJsonObjectW_emit(jsonParam1));

    jsonParam2 = CkJsonObjectW_Create();
    CkHttpRequestW_AddParam(req,L"password",CkJsonObjectW_emit(jsonParam2));

    resp = CkHttpW_PostUrlEncoded(http,L"https://domain.com/accounts/login",req);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkHttpRequestW_Dispose(req);
        CkJsonObjectW_Dispose(jsonParam1);
        CkJsonObjectW_Dispose(jsonParam2);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkHttpRequestW_Dispose(req);
    CkJsonObjectW_Dispose(jsonParam1);
    CkJsonObjectW_Dispose(jsonParam2);

    }

Curl Command

curl -X POST
	--data-urlencode 'username={{username}}'
	--data-urlencode 'password={{password}}'
https://domain.com/accounts/login

Postman Collection Item JSON

{
  "name": "Login to Anypoint Platform",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          "const jar = pm.cookies.jar();\r",
          "\r",
          "jar.clear(pm.request.url, function (error) {\r",
          "\r",
          "});\r",
          ""
        ],
        "type": "text/javascript"
      }
    },
    {
      "listen": "test",
      "script": {
        "exec": [
          "var data = JSON.parse(responseBody);\r",
          "pm.environment.set(\"token\", data.access_token);\r",
          "pm.environment.set(\"cookies\", \"_csrf=\" + pm.cookies.get(\"_csrf\") +\r",
          "                              \"; XSRF-TOKEN=\" + pm.cookies.get(\"XSRF-TOKEN\") +\r",
          "                              \"; mulesoft.sess=\" + pm.cookies.get(\"mulesoft.sess\") +\r",
          "                              \"; mulesoft.sess.sig=\" + pm.cookies.get(\"mulesoft.sess.sig\") );\r",
          "                              \r",
          "pm.cookies.jar().clear(pm.environment.get(\"url\"));\r",
          "const cookieJar = pm.cookies.jar();\r",
          "cookieJar.clear(pm.environment.get(\"url\"));"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "auth": {
      "type": "noauth"
    },
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "urlencoded",
      "urlencoded": [
        {
          "key": "username",
          "value": "{{username}}",
          "type": "text"
        },
        {
          "key": "password",
          "value": "{{password}}",
          "type": "text"
        }
      ],
      "options": {
        "urlencoded": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{url}}/accounts/login",
      "host": [
        "{{url}}"
      ],
      "path": [
        "accounts",
        "login"
      ]
    }
  },
  "response": [
  ]
}