Thank you. Very informative. The function of firebaseAuth has changed and updated .. if anyone need to use this video as it is .. he must downgrade firebaseAuth database to 3.7.2
@@CodingWithZaidi Have you made a Facebook, google etc video yet? I'm struggling to find something for Maui because most examples needs a redirect url and Maui is an app so does not have a redirect url?
@@Etienne80085 hello, did you find something about that? I am also looking for that.
ปีที่แล้ว +4
Hello! Nice video, is it possible that you show us how you implemented Google authentication using firebase? I am having a lot of trouble on this. Thanks!
@@CodingWithZaidi It is weird, just kind of disappears to the background and when I click on it again it restarts. The really weird part is that it works, like if I am creating a user, the user gets created and I'm not doing anything else after that but the app goes away. Again it works perfectly debugging on the device. The code looks like this. private async Task SignUpCommandExecuteAsync() { try { var authLink = await firebaseAuthService.FirebaseAuthProvider.CreateUserWithEmailAndPasswordAsync(SignUpEmail, SignUpPassword); } catch (Firebase.Auth.FirebaseAuthException authException) { await Shell.Current.DisplayAlert("Error Creating User", authException.Reason.ToString(), "Try Again"); } catch (Exception ex) { await Shell.Current.DisplayAlert("Error Creating User", ex.Message, "Try Again"); } } No exception is thrown or at least not one that I can catch. I am building an apk to install like this: dotnet build -c Release -f net6.0-android
Hello. NIce video. But just to ask, how to fix the error because the constructor for FirebaseConfig became double? The error states it cannot be converted because the constructor accept only 1 parameter. Thank You.
Nice, Thx for this informative and helpful video. One Question: why you install Newtonsoft.Json - wouldn't be System.Text.Json sufficient? Is it because of the Firebase package?
Thanks for the tutorial.. Is there any way to check if user is logged in.? Once logged in and the app gets restarted is there a way to check if the user already logged in..
Yes, you will need the help of the preferences to store this data. It would work by storing the userid in preferences and checking if you have an id or not. If you do, don't direct them to the login screen. You'll want to couple this with an expiration on it however for best practice.
hi @CodingWithZaidi nice one i tried but user getting automatically logoff when they switch to other apps while working in this app...what is the issue?
Very informative video
thanks
Thank you. Very informative. The function of firebaseAuth has changed and updated .. if anyone need to use this video as it is .. he must downgrade firebaseAuth database to 3.7.2
Thanks for the update
Hi, thanks for this video.. It was very useful for authentication in MAUI.
Could you please do a similar video for Firestore Database in Maui
Thanks
Wow, this place is a hidden gem for background music! I love it!
Nice, looking forward to seeing more videos, give us a video integrating other social logins also. Facebook, Linkedin, instagram, Twitter, etc
surely will do..
@@CodingWithZaidi Have you made a Facebook, google etc video yet? I'm struggling to find something for Maui because most examples needs a redirect url and Maui is an app so does not have a redirect url?
@@Etienne80085 hello, did you find something about that? I am also looking for that.
Hello! Nice video, is it possible that you show us how you implemented Google authentication using firebase? I am having a lot of trouble on this. Thanks!
Excelent turorial, thanks at lot men.
You're welcome!
I forgot to say I'm from BRAZIL ok
Thanks
Can you add authorization? Only admin has access to certains pages.
We need to create some rules to users then we can implement it
@@CodingWithZaidi
It will be great to add it.
Please add authorization.Thanks
Firebase auth provider is not available for iOS.
Hello. How to google login with this package? Can you help?
CAN U CREATE VIDEO
API CALL MAUI APPLICATION WITH DATAGRID
Hey brother. You do have tutorials on React native as well, can you give a quick and brief differences between MAUI and React Native ? Thanks :)
Will do soon
Please make a video on firebase notification
sure
DO you have a video with google sign in?
This works in debug, but not in release. Is there something I need to do to make it work in a release build?
its strange. it should work in release .code is breaking or whats happening
@@CodingWithZaidi It is weird, just kind of disappears to the background and when I click on it again it restarts. The really weird part is that it works, like if I am creating a user, the user gets created and I'm not doing anything else after that but the app goes away. Again it works perfectly debugging on the device. The code looks like this.
private async Task SignUpCommandExecuteAsync()
{
try
{
var authLink = await firebaseAuthService.FirebaseAuthProvider.CreateUserWithEmailAndPasswordAsync(SignUpEmail, SignUpPassword);
}
catch (Firebase.Auth.FirebaseAuthException authException)
{
await Shell.Current.DisplayAlert("Error Creating User", authException.Reason.ToString(), "Try Again");
}
catch (Exception ex)
{
await Shell.Current.DisplayAlert("Error Creating User", ex.Message, "Try Again");
}
}
No exception is thrown or at least not one that I can catch. I am building an apk to install like this:
dotnet build -c Release -f net6.0-android
Also tried your code with my apikey with the same results.
i didnt try the release version of my app .I need to look in to this matter .
or you can share your findings here
Hello. NIce video. But just to ask, how to fix the error because the constructor for FirebaseConfig became double? The error states it cannot be converted because the constructor accept only 1 parameter. Thank You.
Hi ,
Firstly thank you for video. I have question. I want to signout but i didnt find how to do it can you help me ?
can u do a video on maui that CRUD a firebase database please ?
soon
@@CodingWithZaidi cool ! thanks
Hello, can you make a tutorial for password reset or Forgot Password feature?
Hi, thank you for video tutorial, but i have a problem work in debug mode, no in release. Have you an idea ? Thank you.
Nice, Thx for this informative and helpful video. One Question: why you install Newtonsoft.Json - wouldn't be System.Text.Json sufficient? Is it because of the Firebase package?
thanks brother
you can use system.text.json if you want.
Hi @CodingWithZaidi ! Great video for setting up new user via email. I am struggling to get .NET MAUI | Firebase to work for SSO ... any tips? Thanks!
hi bro, nice video thanks. Please google and facebook auth video
Cannot create an instance of the abstract type or interface 'FirebaseAuthProvider' how did you solve this
me neither, did you solve it ?
For my project I can´t use MauiXaml for the properties
you can do it all in C#
Hello, how could I check if the user is already logged in?
Use the preferences to store the user id, than check if you have one and if you do, than don't route them to the login page.
Thanks for the tutorial.. Is there any way to check if user is logged in.? Once logged in and the app gets restarted is there a way to check if the user already logged in..
Yes, you will need the help of the preferences to store this data. It would work by storing the userid in preferences and checking if you have an id or not. If you do, don't direct them to the login screen. You'll want to couple this with an expiration on it however for best practice.
thanks for share video
just link github is wrong
Updated. You Can check now
Thank you a lot man!
Thank you for watching please share
Aaaaaah that awful noise. Why???!!!
JESUS LOVE YOU.
hi @CodingWithZaidi
nice one i tried but user getting automatically logoff when they switch to other apps while working in this app...what is the issue?