Chilkat Online Tools

Objective-C / Egyptian eInvoicing SDK R1.5 / 1. Login as Taxpayer System

Back to Collection Items

#import <CkoHttp.h>
#import <CkoHttpRequest.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>

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

CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;

CkoHttpRequest *req = [[CkoHttpRequest alloc] init];
[req AddParam: @"grant_type" value: @"client_credentials"];

CkoJsonObject *jsonParam2 = [[CkoJsonObject alloc] init];
[req AddParam: @"client_id" value: [jsonParam2 Emit]];

CkoJsonObject *jsonParam3 = [[CkoJsonObject alloc] init];
[req AddParam: @"client_secret" value: [jsonParam3 Emit]];
[req AddParam: @"scope" value: @"InvoicingAPI"];

CkoHttpResponse *resp = [http PostUrlEncoded: @"https://domain.com/connect/token" req: req];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);

Curl Command

curl -X POST
	-H "Content-Type: application/x-www-form-urlencoded"
	--data-urlencode 'grant_type=client_credentials'
	--data-urlencode 'client_id={{clientId}}'
	--data-urlencode 'client_secret={{clientSecret}}'
	--data-urlencode 'scope=InvoicingAPI'
https://domain.com/connect/token

Postman Collection Item JSON

{
  "name": "1. Login as Taxpayer System",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "\r",
          "pm.test(\"Status code is 200\", function () {\r",
          "var jsonData = JSON.parse(responseBody);\r",
          "pm.environment.set(\"generatedAccessToken\", jsonData.access_token);\r",
          "});\r",
          "\r",
          "\r",
          "\r",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/x-www-form-urlencoded",
        "type": "text"
      },
      {
        "key": "",
        "value": "",
        "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"
        },
        {
          "key": "scope",
          "value": "InvoicingAPI",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{idSrvBaseUrl}}/connect/token",
      "host": [
        "{{idSrvBaseUrl}}"
      ],
      "path": [
        "connect",
        "token"
      ]
    }
  },
  "response": [
  ]
}