open-notify / Open-Notify-API

Source code for api.open-notify.org
http://open-notify.org/Open-Notify-API/
Other
351 stars 72 forks source link

Enable Cross-Origin Resource Sharing (CORS) #24

Open djcroissant opened 6 years ago

djcroissant commented 6 years ago

Implement the Flask-Cors package to allow cross-origin resource sharing (CORS). This will add the following line to response headers served by the API: Access-Control-Allow-Origin: *

When a client sends a request to the API from a different domain, the browser will block the response unless Access-Control-Allow-Origin: * is included in the header of the response. This update will enable clients from other domains to use the API.