CORS problem with my deno web server
I wrote this tiny websocket server in deno:
I set the access-control header to allow for cross-origin access. Specifically my frontend. But when I invoke the server from my frontend like this:
The request fails because the cross-origin request was blocked as the 'Access control allow origin header is missing' even though it is not.
4 Replies
you also have to do
header.append("Access-Control-Allow-Headers", "*");
This is what the code looks like with the change :
mh actually reading through this again, this shouldn't work at all
on the server, are you not seeing an error like:
Upgrade response was not returned from callback
and on the client you should be using new WebSocket()
, not fetch()
I changed the code to use and now it works. Thanks.