alexa-js / alexa-app-server

An Alexa app server for alexa-app.
MIT License
401 stars 116 forks source link

How we have to handle cors in this server ? #102

Closed rajeevs960 closed 6 years ago

rajeevs960 commented 6 years ago

For one request to an end point, i am rendering ejs file where i have to request a api from different server. I am getting cors( cross origin resource sharing) issue. How do we handle this ?

dblock commented 6 years ago

Did you try to server.express.use... with https://github.com/expressjs/cors?

rajeevs960 commented 6 years ago

Yes , thanks i got that solution.