通过失眠症/邮递员作品发出帖子请求,给了我正确的回应。但是,在 axios 中,我似乎无法使其工作。
它没有给我一个错误,它的状态为 200,但实际上并没有像邮递员/失眠症那样登录。我觉得我的 axios 设置有问题
const { email, password } = req.body.params
const endpoint = `https://xxxxxxxxx.com/account/login/`
try {
const response = await axios({
method: 'post',
url: endpoint,
data: qs.stringify({
'customer[email]': email,
'customer[password]': password,
'form_type': 'customer_login'
}),
headers: {
'content-type': 'application/x-www-form-urlencoded'
}
})
res.status(200).send(response.data)
} catch (error) {
res.status(500).send(error)
}