DEV Community

Build User Registration with Node, React, and Okta

Lee Brandt on May 29, 2018

Today's internet users expect a personalized experience. Developers must learn to develop websites that provide that personalized experience while ...
Collapse
 
lhuria94 profile image
Love Huria

Interesting, kind of new to node.
Was trying out this and got the following error:

POST localhost:3000/api/users 400 (Bad Request)

Failed to load dev-855761.okta.com/api/v1/authn: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'localhost:3000' is therefore not allowed access.

Collapse
 
leebrandt profile image
Lee Brandt

Love:

I'd first check to make sure localhost:3000 is listed in your trusted origins.

In the developer dashboard menu, hover over API and choose trusted origins. Make sure localhost:3000 is listed with CORS and Redirect selected.

Collapse
 
lhuria94 profile image
Love Huria

yep It is there.

Thread Thread
 
leebrandt profile image
Lee Brandt

Is there a public repo of your code somewhere I could look at?

Thread Thread
 
ajax27 profile image
Shaun Collins

Hi Lee, I have the same problem I think, is there a git repo for this script?

Thread Thread
 
leebrandt profile image
Lee Brandt

You can check what you have against this repo: github.com/oktadeveloper/okta-node...

Thread Thread
 
ajax27 profile image
Shaun Collins

Thank-you Lee, love the way login path is set up

Thread Thread
 
lhuria94 profile image
Love Huria