You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**This happens when calling: ** public async Task<FirebaseAuthLink> SignInWithEmailAndPasswordAsync(string email, string password, string tenantId = null);
with a valid account and a valid password but that contains a backslash,
Result :
The method : private async Task<FirebaseAuthLink> ExecuteWithPostContentAsync(string googleUrl, string postContent)
and in particular the response (var response) inside the method returns a json parse error.
To solve it I had to download the code (and create a project dependency of the code) and modify the
**This happens when calling: **
public async Task<FirebaseAuthLink> SignInWithEmailAndPasswordAsync(string email, string password, string tenantId = null);
with a valid account and a valid password but that contains a backslash,
Result :
The method :
private async Task<FirebaseAuthLink> ExecuteWithPostContentAsync(string googleUrl, string postContent)
and in particular the response (var response) inside the method returns a json parse error.
To solve it I had to download the code (and create a project dependency of the code) and modify the
method to modify the postContent.
This is how I modified the method, this is a solution but I guess there are better once so I wont publish any pullrequest :)
The text was updated successfully, but these errors were encountered: