Getting CORS when calling `https://login.tapkey.com/connect/token`

Viewed 26

When I attempt to make a call to https://login.tapkey.com/connect/token using a code returned in the authentication stage from the client I get a CORS error, I however I'm able to make that call from the BackenEnd.

1 Answers

CORS applies only to browser clients. That's the nature of CORS restrictions and what they should prevent.

Make sure that you setup the correct hostname in the client configuration in the developer section.

Screenshot

Related