带有GET,OPTIONS方法的Axios 401

时间:2018-12-28 13:28:33

标签: java api http axios

我遇到了Axios和Java API的问题。

我在

中使用它

Application.java

@Bean
    public WebMvcConfigurer corsConfigurer() {
        return new WebMvcConfigurerAdapter() {
            @Override
            public void addCorsMappings(CorsRegistry registry) {
                registry.addMapping("/**").allowedOrigins("*").allowedMethods("*");
            }
        };
    }

直到今天,它的运行状况很好,因为我需要在提供的api中使用我的get请求这样的基本身份验证(在 PostMan Chrome 中都可以运行):

 axios({
      method: 'get',
      url: 'http://localhost:8180/unv-api/api/rubriques/1527/appli',
      withCredentials: true,
      headers:{ Authorization:'Basic '+btoa('admin' + ':' + 'password')}
      })

使用axios,将执行ACTION方法并返回401错误+ CORS错误。

有什么主意吗?谢谢。

0 个答案:

没有答案