I have to download an ics
file with axios,
I tried:
axios.defaults.headers.common['Access-Control-Allow-Origin'] = '*';
axios.get('<url>' {
responseType: 'blob',
headers: {
}
}).then((response) => ...
If I visit the URL with my browser, I instantly get the download.
I'm getting the ERROR:
GET .url CORS Missing Allow Origin
I'm trying all kinds of headers and stuff I'm always getting the same error.
Thanks for your help.