question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. ItĀ collects links to all the places you might be looking at while hunting down a tough bug.

And, if youā€™re still stuck at the end, weā€™re happy to hop on a call to see how we can help out.

How to make /connect/:provider resolve to the signup URL instead of the login URL

See original GitHub issue

Iā€™m using grant to connect Auth0 to an app, but I just noticed that connect/auth0 always resolves to a .auth0.com/u/login. Is there a way to instruct grant to redirect to auth0.com/u/signup?

I honestly didnā€™t know where else to ask this, so please let me know if thereā€™s a better place to ask this question. Thanks in advance.

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:10 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
whoisjuancommented, Mar 16, 2022

@simov Thank you very much!!! I was able to finally fix this and get the outcome I wanted. I appreciate the responsiveness and the tremendous work with Grant!! šŸ™

Closing the issue now.

0reactions
simovcommented, Mar 15, 2022

In Grant Iā€™m using the qs module for that:

Welcome to Node.js v12.22.8.
Type ".help" for more information.
> var qs = require('qs')
undefined
> qs.stringify({custom_params:{screen_hint:'none'}})
'custom_params%5Bscreen_hint%5D=none'
> qs.parse('custom_params%5Bscreen_hint%5D=none')
{ custom_params: { screen_hint: 'none' } }

In case you need to generate the querystring inside the browser then you have to either browserify the qs module or find a replacement.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Configure an OpenID Connect provider for portals with Azure AD
In this step, you create the application and configure the settings with your identity provider. Create application. Note. The Reply URL is usedĀ ......
Read more >
Provider Connection help - Blue Shield of California
Find help in creating a Provider Connection account, viewing authorization status, working with claims, receiving messages, and more. Eligibility and benefits.
Read more >
OpenID Connect (OIDC) authorization code flow mechanism
The Authorization Code Flow mechanism authenticates users of your web application by redirecting them to an OIDC provider, such as Keycloak, to log...
Read more >
After login site is not going to right URL - Stack Overflow
In your settings file, add the following: LOGIN_REDIRECT_URL = 'homepage'. This will redirect the user to the homepage after successfulĀ ...
Read more >
Server Administration Guide - Keycloak
Using the Admin Consoleā€‹ā€‹ Go to the URL for the Admin Console. Enter the username and password you created on the Welcome Page...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found