Access Token
관리자에서 발급받은 key, secret을 통해 api를 요청할 수 있는 token을 발급
Get Token
Headers
Name
Type
Description
Request Body
Name
Type
Description
{
"access_token": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p",
"token_type": "bearer",
"expires_in": 3599,
"scope": "read write"
}{
"timestamp": 1563946941375,
"status": 401,
"error": "Unauthorized",
"message": "Bad credentials",
"path": "/oauth/token"
}Last updated