So I would like to start off by saying I am very new to the world of software development and am trying to build my first react app. I have implemented the login and logout with Auth0. I have one problem though When a new user logs in I would like them to be redirected to ‘/join’ instead of ‘/home’.
I set up a rule to facilitate the above example, which is :
I can’t for the life of me seem to find the answer to fix this. I have searched far and wide but to no avail. I know that it is most probably a simple error. Could somebody please point me in the right direction?
Welcome to the Community, and so sorry for the delayed response!
Have you in fact had an origin error and added your tenant to the allowed web origins in the dashboard? Would you also DM me your tenant name and application name from the dashboard?
@abellinii Everything looks okay in your tenant. Is this error because you are making an https request to localhost and there is no ssl certificate for localhost? Can you try setting your redirect url in the rule to http://localhost:3000/join
Thank you Dan. A silly mistake but that seems to be the problem. I still have an issue parsing the url and sending back but I should be able to fix that.