-
-
Notifications
You must be signed in to change notification settings - Fork 261
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
[v2.0.0-develop-1][Xamarin] User SignUp #353
Comments
I'm facing the exact same error with the function CallCloudCodeFunctionAsync |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I recently encountered this same issue. The problem and the solution is referenced in other issues here, such as #344. Namely, you have to follow the procedure in the README for the Unity client: https://github.com/parse-community/Parse-SDK-dotNET#use-in-unity-client You have to adapt it a bit for Xamarin. Here is what I've used to get it working with Xamarin Forms 5:
|
ServerURI need add |
i was using parse sdk v2.0 in a Xamarin Forms Shared Project.
I am trying to register a new user using Source: https://github.com/parse-community/Parse-SDK-dotNET/#basic-demonstration
Steps to reproduce
Create a Xamarin Forms Shared Project. Install-Package parse -Version 2.0.0-develop-1
Copy Paste Code:
Actual Outcome
await client.SignUpAsync(username: "TestABC", password: "Test");
throws following exception:
System.ArgumentNullException: 'Value cannot be null.Parameter name: element'
Expected Outcome
After SignUpAsync() Function client.GetCurrentUser() should return current User
Environment
Server
4.2.0
Back4APP
Client
-Version 2.0.0-develop-1
The text was updated successfully, but these errors were encountered: