How to integrate Azure AD SSO in flutter app

8,236

Solution 1

Currently, there is no native SDK for Flutter to integrate with AAD.

Here is a Flutter OAuth package for performing user authentication against Azure Active Directory OAuth2 V2.0 endpoint.

Regarding Single sign-on, you can refer to this document.

Solution 2

I'm not sure, if you are still looking. May be this will be useful for others. Build Azure B2C service authentication https://github.com/MaikuB/flutter_appauth Full application code can be found here https://nicksnettravels.builttoroam.com/connecting-flutter-to-azure-ms-ignite/

Share:
8,236
Admin
Author by

Admin

Updated on December 10, 2022

Comments

  • Admin
    Admin over 1 year

    I want to add authentication with SSO using azure AD in flutter app.But I didn't find any helpful doc for integration with flutter.So any suggestion will be of great help.

  • Tony Ju
    Tony Ju about 5 years
    I didn't find any package for v1.0 endpoint. You can find the difference between v1.0 endpoint and v2.0 endpoint here. docs.microsoft.com/en-us/azure/active-directory/develop/… If you must use the v1.0 endpoint, I am afraid there is no such package currently.