인프런 커뮤니티 질문&답변
토큰 갱신 질문드립니다.
작성
·
330
0
강의자료 38. 이벤트 API 점검 의 토큰 갱신하기 입니다.

폼의 token 이 refresh_token 으로 수정되어야 하지 않을까 하는 생각에 글을 남깁니다.
토큰 재발급
POST :: http://localhost:8081/oauth/token
-> 500 Error
{
"error": "server_error",
"error_description": "Internal Server Error"
}
-> 200 OK
{
"access_token": "d1110be3-1603-4724-9aa1-54b990fa2cb5",
"token_type": "bearer",
"refresh_token": "653c38ac-f000-4955-9e01-06bc29d4be77",
"expires_in": 591,
"scope": "read write"
}





