msal_flutter 1.0.0+3 copy "msal_flutter: ^1.0.0+3" to clipboard
msal_flutter: ^1.0.0+3 copied to clipboard

outdated

A Microsoft Authentication Library wrapper for Android and iOS

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'dart:async';
import 'package:msal_flutter/msal_flutter.dart';


void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  
  static const String _authority = "https://msalfluttertest.b2clogin.com/tfp/msalfluttertest.onmicrosoft.com/B2C_1_sisu";
  static const String _clientId = "5913dfb1-7576-451c-a7ea-a7c5a3f8682a";
  
  String _output = 'NONE';

  PublicClientApplication pca;

  Future<void> _acquireToken() async{
    if(pca == null){
      pca = await PublicClientApplication.createPublicClientApplication(_clientId, authority: _authority);
    }

    String res;
    try{
      res = await pca.acquireToken(["https://msalfluttertest.onmicrosoft.com/msalbackend/user_impersonation"]);
    } on MsalUserCancelledException {
      res = "User cancelled";
    } on MsalNoAccountException {
      res = "no account";
    } on MsalInvalidConfigurationException {
      res = "invalid config";
    } on MsalInvalidScopeException {
      res = "Invalid scope";
    }on MsalException {
      res = "Error getting token. Unspecified reason";
    }

    setState(() {
      _output = res;
    });
  }

  Future<void> _acquireTokenSilently() async {
    if(pca == null){
      pca = await PublicClientApplication.createPublicClientApplication(_clientId, authority: _authority);
    }
    
    String res;
    try
    {
      res = await pca.acquireTokenSilent(["https://msalfluttertest.onmicrosoft.com/msalbackend/user_impersonation"]);
    } on MsalUserCancelledException {
      res = "User cancelled";
    } on MsalNoAccountException {
      res = "no account";
    } on MsalInvalidConfigurationException {
      res = "invalid config";
    } on MsalInvalidScopeException {
      res = "Invalid scope";
    }on MsalException {
      res = "Error getting token silently!";
    }

    setState(() {
      _output = res;
    });
  }

  Future _logout() async {
    print("called logout");
    if(pca == null){
      pca = await PublicClientApplication.createPublicClientApplication(_clientId, authority: _authority);
    }

    print("pca is not null");
    String res;
    try{
      await pca.logout();
      res = "Account removed";
    } on MsalException {
      res = "Error signing out";
    } on PlatformException catch (e){
      res = "some other exception ${e.toString()}";
    }

    print("setting state");
    setState((){
      _output = res;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Column(
            children: <Widget>[
              RaisedButton( onPressed: _acquireToken, 
                child: Text('AcquireToken()'),),
              RaisedButton( onPressed: _acquireTokenSilently,
                child: Text('AcquireTokenSilently()')),
              RaisedButton( onPressed: _logout,
                child: Text('Logout')),
              Text( _output),
            ],
          ),
        ),
      ),
    );
  }
}
28
likes
40
pub points
89%
popularity

Publisher

verified publishermuljin.com

A Microsoft Authentication Library wrapper for Android and iOS

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on msal_flutter