Giter Site home page Giter Site logo

Access-Control-Expose-Headers about cors HOT 4 CLOSED

expressjs avatar expressjs commented on April 20, 2024
Access-Control-Expose-Headers

from cors.

Comments (4)

troygoode avatar troygoode commented on April 20, 2024 1

Just received another bug report about this (copy-pasta'd below). Will get this fixed in the next couple of days.


Hey, I just thought I would drop you a note. I might have a minor bug fix, but I'm not sure if it strictly relates to CORS. Chrome has been giving me errors for a while - refusing to get unsafe headers. I believe the solution is: Access-Control-Expose-Headers. To make Chrome happy, I did the following:

Config:

var corsOptions = {
    exposeHeaders : 'Content-Range, X-Content-Range'
};
app.use(cors(corsOptions));

New Method

function configureExposeHeaders(options, req) {
  var headers = options.exposeHeaders;

  if (!headers) {
    return null;
  } else if (headers.join) {
    // .headers is an array, so turn it into a string
    headers = headers.join(',');
  }

  if (headers && headers.length) {
    return {
      key : 'Access-Control-Expose-Headers',
      value : headers
    };
  }
  return null;
}

Added it into the (req.method === 'OPTIONS')'s ELSE block.

(i.e. it fires every other time)

 headers.push(configureExposeHeaders(options, req));

from cors.

troygoode avatar troygoode commented on April 20, 2024 1

Fixed and pushed to npm as version 2.2.0.

Set the exposedHeaders property of the options passed into the cors middleware to use.

from cors.

troygoode avatar troygoode commented on April 20, 2024

Hi @ix-xerri you're right, that isn't currently supported. I haven't seen this header before, but I'll take a look at implementing it soon.

http://www.w3.org/TR/cors/#access-control-expose-headers-response-header

from cors.

ix-xerri avatar ix-xerri commented on April 20, 2024

Express examples usually show CSRF tokens inside some jade template. I include it in the response header and have the client store it in memory so that the next request would contain the CSRF token. To be able to access the header of a CORS response via javascript you need Access-Control-Expose-Headers
Thanks

from cors.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.