User.SignUpAsync() doesn't signup
See original GitHub issueAs stated in the issue #77 if I need to create new user with just Username/email and password I am not able to create it, and I cannot see the user in database.
MoralisUser user = new MoralisUser();
user.username = "email";
user.email = "email";
user.password = "password";
await user.SignUpAsync();
Issue Analytics
- State:
- Created a year ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
c# - How to signup a user with AWS Cognito and a console ...
net core 2.0 console app and a user pool. My app crashes when this line gets executed: var result = await _client.SignUpAsync(signUpRequest);.
Read more >Issues with SignUpAsync when Cognito is configured for ...
I tried to get the Cognito user and then perform a GlobalSignOut with the following code: string userId = User.Claims.FirstOrDefault().Value; ...
Read more >Amazon cognito (not)self-signup - r/aws
SignUpAsync (signUpRequest); ... and I'm getting error that the pool does not allow users to signup themselves. It's really confusing.
Read more >auth.signUp() doesn't error for existing accounts - security ...
Describe the bug. supabase.auth.signUp() is not erroring for existing accounts. Right now, you can submit an existing email with any incorrect ...
Read more >Sign up a user with an Amazon Cognito user pool that ...
Sign up and confirm a user with a username, password, and email address. Set up multi-factor authentication by associating an MFA application with...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Just wanted to note that Signup also does not currently set current User as described in #95.
Current: Signup is called and return User object from DB, DB shows same User. But GetUserAsync() is null as well as other GetUser()/GetClient().GetCurrentUser() methods.
Expected: Signup is called and MoralisInterface.GetUserAsync() can be called right after or later on to get the same user.
Excited for next release 😄
Internal Backlog item #69 created for this issue.