How to redirect to a url like http://example.com/foo/bar after login?
I tried changing the redirect_url in my angular app like this:
auth0Client$ = (from(
createAuth0Client({
domain: "dev-xxxx.auth0.com",
client_id: "yyyt8xxxuEIQEYhHLwPWdazzz0tdSq",
redirect_uri: `${window.location.origin}/foo/bar`
})
)
But it would redirtect to http://example.com/bar only.