web-dev-qa-db-ja.com

React CORSでのフェッチの問題

私はCORSを初めて使用しますが、次の問題があります。

-私はcreate-react-app(ポート3000)を使用して、REST Spring boot(port 8080)で行われたサービスを呼び出します。JWT認証をREST APIなので、他のものを呼び出す前に認証する必要があります。

事は、私はSpringBootプロジェクトindex.htmlで認証することができます(jwt authをテストするために使用しました)が、今では/ auth POST Reactで呼び出して、200 OKを取得しますしかし、私は応答のどこでもトークンを見つけることができないようです。

SpringBoot index.html

function doLogin(loginData) {
        $.ajax({
            url: "/auth",
            type: "POST",
            data: JSON.stringify(loginData),
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (data, textStatus, jqXHR) {
                setJwtToken(**data.token**); //I can get the token without a problem
                $login.hide();
                $notLoggedIn.hide();
                showTokenInformation();
                showUserInformation();
            },....

CORSを使用したReact Fetch(ポート3000)

    fetch(url, {
      crossDomain:true,
      method: 'POST',
      headers: {'Content-Type':'application/json'},
      body: JSON.stringify({
        username: user,
        password: pass,
      })
    }).then((responseJson) => {
      console.log(responseJson);
      const tokenInfo = this.state.token;

      if(tokenInfo !== undefined)
.....

反応フェッチが200 OKを返している間、私はうるさい応答を受け取り、CORSなしでやったのと同じようにresponseJson.tokenを得ることができないようです。何が欠けていますか?

応答:

Response {type: "cors", url: "http://localhost:8080/auth", redirected: false, status: 200, ok: true, …}

どんな助けでも大歓迎です。

前もって感謝します。ホルヘ

編集:

@Override
protected void configure(HttpSecurity httpSecurity) throws Exception {
    httpSecurity
            // we don't need CSRF because our token is invulnerable
            .csrf().disable()

            .exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and()

            // don't create session
            .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()

            .authorizeRequests()
            //.antMatchers(HttpMethod.OPTIONS, "/**").permitAll()

            // allow anonymous resource requests
            .antMatchers(
                    HttpMethod.GET,
                    "/",
                    "/*.html",
                    "/favicon.ico",
                    "/**/*.html",
                    "/**/*.css",
                    "/**/*.js"
                    ,"/rates/**"
            ).permitAll()
            //Allows the user to authenticate
            .antMatchers("/auth/**").permitAll()
            .anyRequest().authenticated();

    // Custom JWT based security filter
    httpSecurity
            .addFilterBefore(authenticationTokenFilterBean(), UsernamePasswordAuthenticationFilter.class);

    // disable page caching
    httpSecurity
            .headers()
            .frameOptions().sameOrigin()
            .cacheControl();
}
7
J_Ocampo

最初に.json()を使用してフェッチ応答を変換する必要があります。約束を返すので、この方法で使用できます。

fetch(url, {
  crossDomain:true,
  method: 'POST',
  headers: {'Content-Type':'application/json'},
  body: JSON.stringify({
    username: user,
    password: pass,
  })
})
  .then(response => response.json())
  .then(responseJson => {
    console.log(responseJson);
    const tokenInfo = this.state.token;
    if (tokenInfo !== undefined) {
...

https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch を参照してください。

11