AXIOS:对预检请求的响应未通过访问控制检查:请求的资源上没有“Access-Control-Allow-Origin”标头

时间:2018-03-29 15:40:18

标签: axios auth0

我正在使用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',但这也无效。

0 个答案:

没有答案