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.

User.SignUpAsync() doesn't signup

See original GitHub issue

As 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:closed
  • Created a year ago
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
Denchyaknowcommented, May 19, 2022

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 😄

1reaction
xactantcommented, May 18, 2022

Internal Backlog item #69 created for this issue.

Read more comments on GitHub >

github_iconTop 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 >

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