Authorization
POST
/connect/tokenสำหรับขอ access token
Request
Header Params
Content-Type
string
optional
Content type of request payload Value: - application/x-www-form-urlencoded
Example:
application/x-www-form-urlencoded
Ocp-Apim-Subscription-Key
string
optional
รหัส subscription key ของลูกค้า
Example:
<Your-Subscription-Key>
Body Params application/x-www-form-urlencoded
grant_type
string
optional
ประเภทของ Grant Types ใน OAuth 2.0 (client_credentials เท่านั้น)
Example:
client_credentials
client_id
string
optional
API client_id respective to each partner obtained from partner onboarding process :api cliend_id ที่เกี่ยวข้องตามแต่ละpartnerที่ได้รับในขั้นตอนเริ่มต้น onboarding
Example:
<Your-Client-Id>
client_secret
string
optional
API client_secret obtained from partner onboarding process: api cliend_secret ที่ได้รับจาก partnerในขั้นตอนเริ่มต้น onboarding
Example:
<Your-Client-Secret>
Request samples
Responses
OK(200)
Bad Request(400)
Unauthorized(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
access_token
string
required
access token
token_type
string
required
ประเภท token
expires_in
integer
required
ระยะเวลาของ token
scope
string
required
ขอบเขต
Example
OK (200)
{
"access_token": "<access_token>",
"expires_in": 3600,
"token_type": "Bearer"
}
Last modified: a year ago