axios.post('http://drupal-site.local/user/login?_format=json',{
"name": username,
"pass": password
}).then(resp..................})
在这里,我在react(http://localhost:3000)中调用Drupal登录API。 Cookie未设置在标题中。如果我使用邮递员相同的API进行调用,则在标头中设置cookie。
我尝试使用{withCredentials: true}
并包括:凭据,但没有用。
axios.post('http://drupal-site.local/user/login?_format=json', {
"name": username,
"pass": password
}, {
withCredentials: true, // or
credentials: include
})
.then(() => {})