Chilkat Online Tools

autoit / ORACLE Hospitality OPERA Cloud REST API Workflows / 01. Get oAuth Token

Back to Collection Items

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

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

$oHttp.BasicAuth = True
$oHttp.Login = "username"
$oHttp.Password = "password"

$oReq = ObjCreate("Chilkat_9_5_0.HttpRequest")

$oJsonParam1 = ObjCreate("Chilkat_9_5_0.JsonObject")
$oReq.AddParam "username",$oJsonParam1.Emit()

$oJsonParam2 = ObjCreate("Chilkat_9_5_0.JsonObject")
$oReq.AddParam "password",$oJsonParam2.Emit()
$oReq.AddParam "grant_type","password"

$oReq.AddHeader "x-app-key","{{AppKey}}"

Local $oResp = $oHttp.PostUrlEncoded("https://domain.com/oauth/v1/tokens",$oReq)
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)

Curl Command

curl -X POST
	-u 'username:password'
	-H "Content-Type: application/x-www-form-urlencoded"
	-H "x-app-key: {{AppKey}}"
	--data-urlencode 'username={{Username}}'
	--data-urlencode 'password={{Password}}'
	--data-urlencode 'grant_type=password'
https://domain.com/oauth/v1/tokens

Postman Collection Item JSON

{
  "name": "01. Get oAuth Token",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "var jsonData = JSON.parse(responseBody);\r",
          "postman.setEnvironmentVariable(\"Token\", jsonData.access_token);\r",
          "var jsonData = JSON.parse(responseBody);\r",
          "postman.setEnvironmentVariable(\"RefreshToken\", jsonData.refresh_token);"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "auth": {
      "type": "basic",
      "basic": [
        {
          "key": "password",
          "value": "{{CLIENT_SECRET}}",
          "type": "string"
        },
        {
          "key": "username",
          "value": "{{CLIENT_ID}}",
          "type": "string"
        },
        {
          "key": "saveHelperData",
          "value": true,
          "type": "boolean"
        },
        {
          "key": "showPassword",
          "value": false,
          "type": "boolean"
        }
      ]
    },
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/x-www-form-urlencoded"
      },
      {
        "key": "x-app-key",
        "type": "text",
        "value": "{{AppKey}}"
      }
    ],
    "body": {
      "mode": "urlencoded",
      "urlencoded": [
        {
          "key": "username",
          "value": "{{Username}}",
          "type": "text"
        },
        {
          "key": "password",
          "value": "{{Password}}",
          "type": "text"
        },
        {
          "key": "grant_type",
          "value": "password",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{HostName}}/oauth/v1/tokens",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "oauth",
        "v1",
        "tokens"
      ]
    }
  },
  "response": [
  ]
}