typescript axios get未在跨源请求上设置cookie [已关闭]

mfpqipee  于 2023-02-17  发布在  TypeScript
关注(0)|答案(1)|浏览(131)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
1小时前关闭。
Improve this question
我正在使用axios来执行一个跨源服务的获取。身份验证是通过一个cookie完成的
我正在设置withCredentials: true,但请求是在没有cookie的情况下完成的。请求响应也有access-control-allow-credentials: true
我尝试了凭据和更改一些标题,但没有任何工作。

wrrgggsh

wrrgggsh1#

第一步是查看端点返回的响应。
你可以很容易地看到,例如进入chrome开发工具中的网络选项卡。
此外,请求可能由浏览器发送,而不是Axios例如(img,video)
Html媒体标签具有可用于发送授权:https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img

相关问题