javascript - How to CORS Allow Headers in Sails - Stack Overflow

I want my server to allow 'Authorization' header for my mobile app. Currently my webserver is

I want my server to allow 'Authorization' header for my mobile app. Currently my webserver is in sails and I use sails. My routes code is

'post /auth/local' : {
    cors: {
       origin: '*'    
    },
    controller: 'AuthController',
    action: 'callback'
},

When my client sends a request with 'Authorization' in header I get error

XMLHttpRequest cannot load http://localhost:1337/auth/local. 
Request header field Authorization is not allowed by Access-Control-Allow-Headers.

How do I specify in my routes code that 'Authorization' header is also allowed?

I want my server to allow 'Authorization' header for my mobile app. Currently my webserver is in sails and I use sails. My routes code is

'post /auth/local' : {
    cors: {
       origin: '*'    
    },
    controller: 'AuthController',
    action: 'callback'
},

When my client sends a request with 'Authorization' in header I get error

XMLHttpRequest cannot load http://localhost:1337/auth/local. 
Request header field Authorization is not allowed by Access-Control-Allow-Headers.

How do I specify in my routes code that 'Authorization' header is also allowed?

Share Improve this question edited Jul 28, 2015 at 2:11 rnrneverdies 15.7k9 gold badges66 silver badges95 bronze badges asked Jul 19, 2015 at 4:40 rajuraju 5,00817 gold badges67 silver badges121 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 15

Add headers : 'Content-Type, Authorization' to cors object, like example below:

'post /auth/local' : {
    cors: {
       origin: '*',
       headers: 'Content-Type, Authorization'  
    },
    controller: 'AuthController',
    action: 'callback'
},

headers: Comma-delimited list of headers that are allowed to be sent with CORS requests. This is only used in response to preflight requests.

Source: Sails CORS Config

Notice that Content-Type is also required due is the default value of that property and is required for POST and PUT methods.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743584115a4474693.html

相关推荐

  • javascript - How to CORS Allow Headers in Sails - Stack Overflow

    I want my server to allow 'Authorization' header for my mobile app. Currently my webserver is

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信