aad_oauth 0.1.3 copy "aad_oauth: ^0.1.3" to clipboard
aad_oauth: ^0.1.3 copied to clipboard

outdated

A Flutter OAuth package for performing user authentication against Azure Active Directory OAuth2 v2.0 endpoint.

Azure Active Directory OAuth #

A Flutter OAuth package for performing user authentication against Azure Active Directory OAuth2 v2.0 endpoint. Forked from hitherejoe.FlutterOAuth.

Supported Flows:

Usage #

For using this library you have to create an azure app at the Azure App registration portal. Use native app as plattform type (with callback URL: https://login.live.com/oauth20_desktop.srf).

Afterwards you have to initialize the library as follow:

final Config config = new Config(
  "YOUR TENANT ID",
  "YOUR CLIENT ID",
  "openid profile offline_access");
final AadOAuth oauth = new AadOAuth(config);

This allows you to pass in an tenant ID, client ID and scope.

Then once you have an OAuth instance, you can call login() and afterwards getAccessToken() to retrieve an access token:

await oauth.login();
String accessToken = await oauth.getAccessToken();

You can also call getAccessToken() directly. It will automatically login and retrive an access token.

Tokens are cached in memory. to destroy the tokens you can call logout():

await oauth.logout();

Installation #

Add the following to your pubspec.yaml dependencies:

dependencies:
  aad_oauth: "^0.1.3"
139
likes
0
pub points
97%
popularity

Publisher

verified publisherearlybyte.ch

A Flutter OAuth package for performing user authentication against Azure Active Directory OAuth2 v2.0 endpoint.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_webview_plugin, http

More

Packages that depend on aad_oauth