-
Notifications
You must be signed in to change notification settings - Fork 396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User creation workflow #1759
Comments
Related to #1751, which basically implies the need for an easier silent login workflow, which is highly necessary! Open to help if needed but big 👍🏼 to this issue. |
This appears to be a reasonable request. Requiring a newly created user to log in is detrimental to user experience. Hope this gets solved 👍 . |
We also have a use case where we want to programmatically trigger a passwordless signup with But I cannot find an easy way to manually set the session using the response from |
Tad disappointing that this hasn't gotten any response. The thing to this is |
@donovan-fintool Did you find a solution? I have a similar case than yours, I can have the response from |
Unfortunately no, we're probably migrating to another auth solution, as our developer experience with Auth0 has been disappointing. |
@guabu please consider this for v4, it's a highly necessary feature to have. Any kind of helper that makes our job easier regarding silent login will be highly appreciated. |
Checklist
Describe the problem you'd like to have solved
Hello!
Thank you for maintaining this lib! My team is using it since a while and it works just great.
We recently had a need for a custom signup flow, and we struggled to do what we wanted, ie:
nextjs-auth0
.Auth0 support advised us to use
auth0
node library to create the user and then call/oauth/token
to retrieve an id_token and an access_token. After some back and forth with support, we were finally able to implement something that works.You can find a POC here:
https://github.com/jpb06/auth0-silent-login
Now, the issue is we had to extract logic from
nextjs-auth0
(the content of this folder, basically) to perform the following tasks:From what I could gather, these responsibilities are spread out in internal code that is not exposed by the lib (StatelessSession class, TransientStore class, to name a few).
Redefining that logic in our own codebases is sub-optimal, as creating a session falls within the responsibilities of
nextjs-auth0
in our opinion. If implementation details change on this lib, we would be exposed to regressions.Describe the ideal solution
Thank you for your time 🙇🏻
Alternatives and current workarounds
Partially related: #1207
Additional context
No response
The text was updated successfully, but these errors were encountered: