Chilkat Online Tools

PureBasic / Booking Management API v2021.12 / 0. REST Authorize ATK Copy

Back to Collection Items

IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkHttpRequest.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

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

    CkHttpRequest::ckAddParam(req,"grant_type","client_credentials")

    CkHttpRequest::ckAddHeader(req,"Conversation-ID","{{conv_id}}")
    CkHttpRequest::ckAddHeader(req,"Authorization","Basic {{secret}}")

    resp.i = CkHttp::ckPostUrlEncoded(http,"https://domain.com/v2/auth/token",req)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkHttpRequest::ckDispose(req)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkHttpRequest::ckDispose(req)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Content-Type: application/x-www-form-urlencoded"
	-H "Authorization: Basic {{secret}}"
	-H "Conversation-ID: {{conv_id}}"
	-d 'grant_type=client_credentials'
https://domain.com/v2/auth/token

Postman Collection Item JSON

{
  "name": "0. REST Authorize ATK Copy",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    },
    {
      "listen": "test",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "auth": {
      "type": "noauth"
    },
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/x-www-form-urlencoded",
        "type": "text"
      },
      {
        "key": "Authorization",
        "value": "Basic {{secret}}",
        "type": "text"
      },
      {
        "key": "Conversation-ID",
        "value": "{{conv_id}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "grant_type=client_credentials"
    },
    "url": {
      "raw": "{{rest_endpoint}}/v2/auth/token",
      "host": [
        "{{rest_endpoint}}"
      ],
      "path": [
        "v2",
        "auth",
        "token"
      ]
    },
    "description": "\n\n[//]: # \"Start\"\n\n<b>[Description](https://developer.sabre.com/resources/getting_started_with_sabre_apis/how_to_get_a_token#3sub3)\n\n[//]: # \"End\""
  },
  "response": [
  ]
}