春季奥思2.0缺少授权类型
2022-09-04 06:39:02
我正在使用Spring Oauth 2.O。
当我将请求作为表单数据传递时,它工作正常,但是当我尝试以格式传递数据时,它会给我错误,缺少授权类型。application/json
请求
http://localhost:8080/oauth/token
{"username":"parths","password":"123456","grant_type":"password"}
我得到的错误。
{
"status": "0",
"message": "Missing grant type"
}
请指导。