Chilkat Online Tools

Node.js / Egyptian eInvoicing SDK R1.5 / 1. Authenticate POS

Back to Collection Items

var os = require('os');
if (os.platform() == 'win32') {  
    if (os.arch() == 'ia32') {
        var chilkat = require('@chilkat/ck-node21-win-ia32');
    } else {
        var chilkat = require('@chilkat/ck-node21-win64'); 
    }
} else if (os.platform() == 'linux') {
    if (os.arch() == 'arm') {
        var chilkat = require('@chilkat/ck-node21-arm');
    } else if (os.arch() == 'x86') {
        var chilkat = require('@chilkat/ck-node21-linux32');
    } else {
        var chilkat = require('@chilkat/ck-node21-linux64');
    }
} else if (os.platform() == 'darwin') {
    if (os.arch() == 'arm64') {
        var chilkat = require('@chilkat/ck-node21-mac-m1');
    } else {
        var chilkat = require('@chilkat/ck-node21-macosx');
    }
}


function chilkatExample() {

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

    var http = new chilkat.Http();
    var success;

    var req = new chilkat.HttpRequest();
    req.AddParam("grant_type","client_credentials");

    var jsonParam2 = new chilkat.JsonObject();
    req.AddParam("client_id",jsonParam2.Emit());

    var jsonParam3 = new chilkat.JsonObject();
    req.AddParam("client_secret",jsonParam3.Emit());

    req.AddHeader("presharedkey","C68FEC13-FE34-4839-89F9-ADB0D678CFE0");
    req.AddHeader("posmodelframework","1");
    req.AddHeader("posserial","Test_SerialNo1");
    req.AddHeader("pososversion","IOS");

    // resp: HttpResponse
    var resp = http.PostUrlEncoded("https://domain.com/connect/token",req);
    if (http.LastMethodSuccess == false) {
        console.log(http.LastErrorText);
        return;
    }

    console.log(resp.StatusCode);
    console.log(resp.BodyStr);


}

chilkatExample();

Curl Command

curl -X POST
	-H "posserial: Test_SerialNo1"
	-H "pososversion: IOS"
	-H "posmodelframework: 1"
	-H "presharedkey: C68FEC13-FE34-4839-89F9-ADB0D678CFE0"
	--data-urlencode 'grant_type=client_credentials'
	--data-urlencode 'client_id={{clientId}}'
	--data-urlencode 'client_secret={{clientSecret}}'
https://domain.com/connect/token

Postman Collection Item JSON

{
  "name": "1. Authenticate POS",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "var json = pm.response.json()\r",
          "var accesstoken=json.access_token\r",
          "pm.environment.set(\"generatedAccessToken\",accesstoken);\r",
          "\r",
          "pm.test(\"Status code is 200\", function () {\r",
          "    pm.response.to.have.status(200);\r",
          "});"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "posserial",
        "value": "Test_SerialNo1",
        "type": "text"
      },
      {
        "key": "pososversion",
        "value": "IOS",
        "type": "text"
      },
      {
        "key": "posmodelframework",
        "value": "1",
        "type": "text",
        "disabled": true
      },
      {
        "key": "presharedkey",
        "value": "C68FEC13-FE34-4839-89F9-ADB0D678CFE0",
        "type": "text"
      }
    ],
    "body": {
      "mode": "urlencoded",
      "urlencoded": [
        {
          "key": "grant_type",
          "value": "client_credentials",
          "type": "text"
        },
        {
          "key": "client_id",
          "value": "{{clientId}}",
          "type": "text"
        },
        {
          "key": "client_secret",
          "value": "{{clientSecret}}",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{idSrvBaseUrl}}/connect/token",
      "host": [
        "{{idSrvBaseUrl}}"
      ],
      "path": [
        "connect",
        "token"
      ]
    }
  },
  "response": [
  ]
}