Skip to content
Advertisement

Access-Control-Allow-Origin issue in ktor cors header

I am building a simple REST API using ktor and used cors but when i send a simple get request with no headers data the server works fine but if i want the client to have say key:1 the server doesn`t respond me correctly, it says the problem is

JavaScript

so here is my ktor code

JavaScript

and my javascript code looks like this….

JavaScript

please help me

Advertisement

Answer

You need to whitelist your headers like this:

JavaScript

This needs to be done with every custom HTTP header you intend to use.

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