Browsers won't send stored cookie










1















Below are the response headers I send from my server backend on a login request. The server is running on localhost:8090 and I'm serving the site from localhost:3000 using react-scripts. Both Chrome and Firefox store the cookie for the 'site' http://localhost:3000. I'm using axios to send API requests as shown below. The problem is that subsequent api requests do not send the cookie. From searching around I believe that the port is not supposed to make a difference, so the question is why is the cookie not being set?



HTTP/1.1 200 OK
Vary: Origin
Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
Access-Control-Allow-Credentials: true
Access-Control-Allow-Origin: http://localhost:3000
Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With
Content-Type: application/json
Content-Length: 42
Set-Cookie: appcredentials=gXXXXXBb7GukifOC_xoQrQAEilZ6MlKa2IbNAPo9HIiIvw97qCpqUnBPfcdBp-o4eZVAXkCPVNfCFMFTlr-mi5-Ie9FkCg3BO-PGw-3sfDL3dPKA66vNNevK9089C7DCkBMwYpEcz3dm5HVcHVTXQVRk9M2oBNrDzXhczfhJFI_gubdYDt2BKjRCx6bRUkfgPEV_N-VyKmbR; Domain=localhost; Path=/
userId="gh@gh.com"; expires=Wed, 28 Nov 2018 18:38:06 GMT; Path=/
Date: Wed, 14 Nov 2018 18:35:36 GMT
Server: Python/3.5 aiohttp/2.2.5


The axios call:



export const get_features = (callback) => async dispatch => 
console.log('get the features man', cookie.load('appcredentials'))
try
const response = await axios.get(
'http://localhost:8090/app/features',
null,
withCredentials:true
);
dispatch( type: GET_FEATURES, payload: response.data );
callback();
catch (e)
dispatch( type: AUTH_ERROR, payload: e );

;


Incidentally the console.log correctly logs the value of the cookie.










share|improve this question


























    1















    Below are the response headers I send from my server backend on a login request. The server is running on localhost:8090 and I'm serving the site from localhost:3000 using react-scripts. Both Chrome and Firefox store the cookie for the 'site' http://localhost:3000. I'm using axios to send API requests as shown below. The problem is that subsequent api requests do not send the cookie. From searching around I believe that the port is not supposed to make a difference, so the question is why is the cookie not being set?



    HTTP/1.1 200 OK
    Vary: Origin
    Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
    Access-Control-Allow-Credentials: true
    Access-Control-Allow-Origin: http://localhost:3000
    Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With
    Content-Type: application/json
    Content-Length: 42
    Set-Cookie: appcredentials=gXXXXXBb7GukifOC_xoQrQAEilZ6MlKa2IbNAPo9HIiIvw97qCpqUnBPfcdBp-o4eZVAXkCPVNfCFMFTlr-mi5-Ie9FkCg3BO-PGw-3sfDL3dPKA66vNNevK9089C7DCkBMwYpEcz3dm5HVcHVTXQVRk9M2oBNrDzXhczfhJFI_gubdYDt2BKjRCx6bRUkfgPEV_N-VyKmbR; Domain=localhost; Path=/
    userId="gh@gh.com"; expires=Wed, 28 Nov 2018 18:38:06 GMT; Path=/
    Date: Wed, 14 Nov 2018 18:35:36 GMT
    Server: Python/3.5 aiohttp/2.2.5


    The axios call:



    export const get_features = (callback) => async dispatch => 
    console.log('get the features man', cookie.load('appcredentials'))
    try
    const response = await axios.get(
    'http://localhost:8090/app/features',
    null,
    withCredentials:true
    );
    dispatch( type: GET_FEATURES, payload: response.data );
    callback();
    catch (e)
    dispatch( type: AUTH_ERROR, payload: e );

    ;


    Incidentally the console.log correctly logs the value of the cookie.










    share|improve this question
























      1












      1








      1








      Below are the response headers I send from my server backend on a login request. The server is running on localhost:8090 and I'm serving the site from localhost:3000 using react-scripts. Both Chrome and Firefox store the cookie for the 'site' http://localhost:3000. I'm using axios to send API requests as shown below. The problem is that subsequent api requests do not send the cookie. From searching around I believe that the port is not supposed to make a difference, so the question is why is the cookie not being set?



      HTTP/1.1 200 OK
      Vary: Origin
      Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
      Access-Control-Allow-Credentials: true
      Access-Control-Allow-Origin: http://localhost:3000
      Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With
      Content-Type: application/json
      Content-Length: 42
      Set-Cookie: appcredentials=gXXXXXBb7GukifOC_xoQrQAEilZ6MlKa2IbNAPo9HIiIvw97qCpqUnBPfcdBp-o4eZVAXkCPVNfCFMFTlr-mi5-Ie9FkCg3BO-PGw-3sfDL3dPKA66vNNevK9089C7DCkBMwYpEcz3dm5HVcHVTXQVRk9M2oBNrDzXhczfhJFI_gubdYDt2BKjRCx6bRUkfgPEV_N-VyKmbR; Domain=localhost; Path=/
      userId="gh@gh.com"; expires=Wed, 28 Nov 2018 18:38:06 GMT; Path=/
      Date: Wed, 14 Nov 2018 18:35:36 GMT
      Server: Python/3.5 aiohttp/2.2.5


      The axios call:



      export const get_features = (callback) => async dispatch => 
      console.log('get the features man', cookie.load('appcredentials'))
      try
      const response = await axios.get(
      'http://localhost:8090/app/features',
      null,
      withCredentials:true
      );
      dispatch( type: GET_FEATURES, payload: response.data );
      callback();
      catch (e)
      dispatch( type: AUTH_ERROR, payload: e );

      ;


      Incidentally the console.log correctly logs the value of the cookie.










      share|improve this question














      Below are the response headers I send from my server backend on a login request. The server is running on localhost:8090 and I'm serving the site from localhost:3000 using react-scripts. Both Chrome and Firefox store the cookie for the 'site' http://localhost:3000. I'm using axios to send API requests as shown below. The problem is that subsequent api requests do not send the cookie. From searching around I believe that the port is not supposed to make a difference, so the question is why is the cookie not being set?



      HTTP/1.1 200 OK
      Vary: Origin
      Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
      Access-Control-Allow-Credentials: true
      Access-Control-Allow-Origin: http://localhost:3000
      Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With
      Content-Type: application/json
      Content-Length: 42
      Set-Cookie: appcredentials=gXXXXXBb7GukifOC_xoQrQAEilZ6MlKa2IbNAPo9HIiIvw97qCpqUnBPfcdBp-o4eZVAXkCPVNfCFMFTlr-mi5-Ie9FkCg3BO-PGw-3sfDL3dPKA66vNNevK9089C7DCkBMwYpEcz3dm5HVcHVTXQVRk9M2oBNrDzXhczfhJFI_gubdYDt2BKjRCx6bRUkfgPEV_N-VyKmbR; Domain=localhost; Path=/
      userId="gh@gh.com"; expires=Wed, 28 Nov 2018 18:38:06 GMT; Path=/
      Date: Wed, 14 Nov 2018 18:35:36 GMT
      Server: Python/3.5 aiohttp/2.2.5


      The axios call:



      export const get_features = (callback) => async dispatch => 
      console.log('get the features man', cookie.load('appcredentials'))
      try
      const response = await axios.get(
      'http://localhost:8090/app/features',
      null,
      withCredentials:true
      );
      dispatch( type: GET_FEATURES, payload: response.data );
      callback();
      catch (e)
      dispatch( type: AUTH_ERROR, payload: e );

      ;


      Incidentally the console.log correctly logs the value of the cookie.







      javascript cookies axios






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 15 '18 at 10:30









      user1753106user1753106

      165211




      165211






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53317377%2fbrowsers-wont-send-stored-cookie%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53317377%2fbrowsers-wont-send-stored-cookie%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3