flutter_appauth 0.0.4
flutter_appauth: ^0.0.4 copied to clipboard
This plugin provides an abstraction around the Android and iOS AppAuth SDKs so it can be used to communicate with OAuth 2.0 and OpenID Connect providers
0.0.4 #
- BREAKING CHANGE renamed
authorizeAndExchangeToken
method toauthorizeAndExchangeCode
to reflect what happens behind the scenes - Added an
authorize
method that performs an authorization request to get an authorization code without exchanging it - Updated README and sample code to demonstrate the use of the
authorize
method, how to exchange the authorization code for tokens and how to perform an authorization request that will retrieve the disocvery document with an issuer instead of the full discovery endpoint URL.
0.0.3+1 #
- Fix code around inferring grant type.
- Update plugin description
0.0.3 #
- Fix to infer grant type based on what is provided when creating a token request (currently only refresh token is supported);
- Update README to include link to https://appauth.io
- Update example to include (commented out) code where the authorization and token endpoints can be explicit set instead of relying on discovery to fetch those endpoints
0.0.2+1 #
- Switch example to connect to test instance of IdentityServer4
0.0.2 #
- Fix error when either
discoveryUrl
orissuer
has been passed to theAuthorizationTokenRequest
constructor