flutter_liferay_oauth 0.1.0 copy "flutter_liferay_oauth: ^0.1.0" to clipboard
flutter_liferay_oauth: ^0.1.0 copied to clipboard

outdated

Flutter OAuth package for performing user authentication against Liferay OAuth2 v2.0 endpoint.

Flutter Liferay OAuth 2.0 #

A Flutter OAuth package for performing Liferay login using OAuth2 standard to access Liferay DXP JAX-RS service. Forked from Earlybyte.aad_oauth.

Supported Flows:

More info on Liferay/Oauth2

Usage #

Create a Liferay JAX-RS service and configure OAUTH 2.0 by following these instructions

In the flutter app, initialize:

final Config config = new Config(
  "LIFERAY SERVER",
  "REDIRECT_URL",
  "CLIENT_ID");
final LiferayOAuth oauth = new LiferayOAuth(config);

This allows you to pass in an Liferay Server, Redirect Url, client ID and few more optional params.

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

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

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

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

Installation #

Add the following to your pubspec.yaml dependencies:

dependencies:
  flutter_liferay_oauth: "^0.0.2"
2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Flutter OAuth package for performing user authentication against Liferay OAuth2 v2.0 endpoint.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_webview_plugin, http

More

Packages that depend on flutter_liferay_oauth