我正在尝试使用 access token
在 reactjs 中命中和返回 fetch
的端点。我收到的错误是 { "error": "invalid_request", "error_description": "Missing form parameter: grant_type" }
。
这是我的片段。
const response = await fetch(url,{
method : 'POST',
headers: {
//'Accept': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded'
},
body : JSON.stringify(
{
'grant_type' : 'client_credentials',
'client_id' : 'my_client_id',
'client_secret' : 'my_client_secret',
'scope' : 'openid'
}
)
})
请指出我在POSTMAN
中做错的地方,它与上述相同的参数工作正常。