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