我正在使用axios这样发布到基于令牌的身份验证端点:
axios.post("http://SOMEAPI/PROJECT/token",
{
username: "SA",
password: "123",
type: "WT",
grant_type: "password"
}
).then(function (response) {
console.log('Login output', response.data)
});
这将给我400个错误的请求
如果我在URL末尾添加“ /”,它将发布2个来自AXIOS的请求。 1将用于选项,第二个将用于发布,由于我的项目api没有任何项目/令牌/端点,因此第二个将不起作用。