Chilkat Online Tools

C / LHDN MyInvois SDK / Login as Taxpayer System

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkHttpRequest.h>
#include <C_CkHttpResponse.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkHttpRequest req;
    HCkHttpResponse resp;

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

    http = CkHttp_Create();

    req = CkHttpRequest_Create();
    CkHttpRequest_AddParam(req,"client_id","cc446489-7217-4791-a4d2-b7d14a36b8a5");
    CkHttpRequest_AddParam(req,"client_secret","a7d0addf-86d4-4d7a-bd44-623f8dda9108");
    CkHttpRequest_AddParam(req,"grant_type","client_credentials");
    CkHttpRequest_AddParam(req,"scope","InvoicingAPI");

    CkHttpRequest_AddHeader(req,"client_id","{{clientId}}");
    CkHttpRequest_AddHeader(req,"grant_type","client_credentials");
    CkHttpRequest_AddHeader(req,"client_secret","{{clientSecret}}");

    resp = CkHttp_PostUrlEncoded(http,"https://domain.com/connect/token",req);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkHttpRequest_Dispose(req);
        return;
    }

    printf("%d\n",CkHttpResponse_getStatusCode(resp));
    printf("%s\n",CkHttpResponse_bodyStr(resp));
    CkHttpResponse_Dispose(resp);


    CkHttp_Dispose(http);
    CkHttpRequest_Dispose(req);

    }

Curl Command

curl -X POST
	-H "client_id: {{clientId}}"
	-H "client_secret: {{clientSecret}}"
	-H "grant_type: client_credentials"
	--data-urlencode 'client_id=cc446489-7217-4791-a4d2-b7d14a36b8a5'
	--data-urlencode 'client_secret=a7d0addf-86d4-4d7a-bd44-623f8dda9108'
	--data-urlencode 'grant_type=client_credentials'
	--data-urlencode 'scope=InvoicingAPI'
https://domain.com/connect/token

Postman Collection Item JSON

{
  "name": "Login as Taxpayer System",
  "protocolProfileBehavior": {
    "disabledSystemHeaders": {
      "connection": true,
      "accept-encoding": true,
      "accept": true,
      "user-agent": true,
      "host": true
    }
  },
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "client_id",
        "value": "{{clientId}}",
        "type": "text",
        "uuid": "ee303c9d-1311-4e81-95ac-d9479dd2b5c0",
        "disabled": true
      },
      {
        "key": "client_secret",
        "value": "{{clientSecret}}",
        "type": "text",
        "uuid": "091d3a0c-149b-47c1-ae6a-efd5cac1f983",
        "disabled": true
      },
      {
        "key": "grant_type",
        "value": "client_credentials",
        "type": "text",
        "uuid": "4c8439d5-eff6-4d7f-a66c-5d8d3f1a0938",
        "disabled": true
      }
    ],
    "body": {
      "mode": "urlencoded",
      "urlencoded": [
        {
          "key": "client_id",
          "value": "cc446489-7217-4791-a4d2-b7d14a36b8a5",
          "type": "text"
        },
        {
          "key": "client_secret",
          "value": "a7d0addf-86d4-4d7a-bd44-623f8dda9108",
          "type": "text"
        },
        {
          "key": "grant_type",
          "value": "client_credentials",
          "type": "text"
        },
        {
          "key": "scope",
          "value": "InvoicingAPI",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{idSrvBaseUrl}}/connect/token",
      "host": [
        "{{idSrvBaseUrl}}"
      ],
      "path": [
        "connect",
        "token"
      ]
    }
  },
  "response": [
  ]
}