AWS ElasticBeanstalk的CORS问题取决于请求的端点

时间:2018-09-17 20:59:43

标签: node.js amazon-web-services express cors

在由AWS Elastic Beanstalk托管的Node Express应用中,CORS请求出现问题。每当我尝试请求/login端点时,都会收到CORS错误,而/lost_password端点工作得很好。我使用cors软件包在Express应用中配置了CORS:

const cors = require('cors');
const corsOptions = {
    origin: WEBAPP_ADDR,
    methods: 'GET,POST,PUT,PATCH,DELETE',
    allowedHeaders: 'Content-Type',
    credentials: true
};
app.use(cors(corsOptions));

Elastic Beanstalk是否有与此相关的问题?我找不到任何可以解释这个问题的东西。

0 个答案:

没有答案