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"
"CLIENT_SECRET");
final LiferayOAuth oauth = new LiferayOAuth(config);
This allows you to pass in an Liferay Server, Redirect Url, client ID, Client secret and few more optional params.
If your service require to pass an oauth2 scope, the config allows for an optional param 'scope'. For more on OAuth2 Scopes
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.1.2"
Libraries
Dart
- dart:ui
- Built-in types and core primitives for a Flutter application. [...]
- dart:async
- Support for asynchronous programming, with classes such as Future and Stream. [...]
- dart:collection
- Classes and utilities that supplement the collection support in dart:core. [...]
- dart:convert
- Encoders and decoders for converting between different data representations, including JSON and UTF-8. [...]
- dart:core
- Built-in types, collections, and other core functionality for every Dart program. [...]
- dart:developer
- Interact with developer tools such as the debugger and inspector. [...]
- dart:math
- Mathematical constants and functions, plus a random number generator. [...]
- dart:typed_data
- Lists that efficiently handle fixed sized data (for example, unsigned 8 byte integers) and SIMD numeric types. [...]
- dart:io
- File, socket, HTTP, and other I/O support for non-web applications. [...]
- dart:isolate
- Concurrent programming using isolates: independent workers that are similar to threads but don't share memory, communicating only via messages. [...]