Skip to content
Advertisement

CORS on golang server & javascript fetch frontend

I have a golang HTTP server with code like:

JavaScript

I call this HTTP endpoint from a JS frontend, a react app deployed on port 3000, using code:

JavaScript

The above code fails with the following logs.

On the server side:

JavaScript

On the browser, in the developer tools logs:

JavaScript

Can someone help fix the authentication problem ? I am not sure if I am missing something related to CORS on the server side or doing bad authentication on the client side. Any help ? Thanks.

Advertisement

Answer

The Access-Control-Allow-Origin: * has to be sent from the server, not by the client. Assuming you are in a standard net/http handler function, try this code:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement