Replies: 3 comments 14 replies
-
I have the same question @jthegedus, did you find any solution? |
Beta Was this translation helpful? Give feedback.
-
AD is supported via the generic This is how I did it with FlutterFire Auth for a Web project: FirebaseApp myApp = Firebase.app('my_app');
FirebaseAuth auth = FirebaseAuth.instanceFor(app: myApp);
OAuthProvider provider = OAuthProvider('microsoft.com');
provider.setCustomParameters({'tenant': 'your_tenant_id_here'});
await auth.signInWithPopup(provider); [EDIT]: WEB ONLY |
Beta Was this translation helpful? Give feedback.
-
@jthegedus Thank you so much for the response, but I believe this only works for a web project. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
#1107 was asking about Microsoft OAuth & Active Directory support since Firebase added the feature back in 2019.
A recent update in that thread from @Salakar mentioned the roadmap and rework (kudos everyone) and then says:
Looking at the FlutterFire Auth documentation there doesn't appear to be a reference to Custom Auth providers. And the Social Auth section containing Google, FB, Apple, Twitter and GitHub would indicate that Microsoft would follow as a direct implementation.
Can someone shed light on:
Thanks (I'm new to Dart/Flutter so excuse if custom OAuth is a simple solution, I cannot find any ref to it)
Beta Was this translation helpful? Give feedback.
All reactions