我正在使用Auth0并尝试使用axios从/v2/users/{id}
向localhost:3000/profile
发送补丁/获取请求。我收回了标题中的错误。
我已在/
的{{1}}和/profile
的信息中心中启用了CORS。
以下是我正在使用的代码:
localhost:3000
我已经对邮递员进行了测试,所以我知道令牌有效,其他一切也都有效。 const headers = {
Authorization: `Bearer ${token}`,
'Access-Control-Allow-Origin': 'http://localhost:3000/profile'
};
axios.patch(
`https://taustin.auth0.com/api/v2/users/${this.state.profile.sub}`,
{ user_metadata: this.state.items },
headers
);
存在一些我不知道如何修复的问题。
我也尝试了CORS
:{'Access-Control-Allow-Origin'
,但这也无效。