iqfareez / flutter_session_jwt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_session_jwt

This package allows you to store the JWT token in secure storage and can decode the json web token. Since the payload is base64 encoded you can easily know the payload data stored with no password required, there are other methods available to get expiry date, issued date, and can check whether token expired or not.

This package can help you to store the JWT token in secure storage and provide you different methods to access information from the token.

Note: Make sure to save the token before accessing other methods.

Getting started

In your pubspec.yaml file within your Flutter Project:

dependencies:
  flutter_session_jwt: <latest_version>

Example Screenshot

Example screenshot

Usage

Import the package

import 'package:flutter_session_jwt/flutter_session_jwt.dart';

Here is an exmaple to store the JWT token post login

Future<http.Response> login(String userName , String password) async{
  var response = await http.post(
    Uri.parse('https://jsonplaceholder.typicode.com/albums'),
    headers: <String, String>{
      'Content-Type': 'application/json; charset=UTF-8',
    },
    body: jsonEncode(<String, String>{
      'userName': userName,
      'password': password
    }),
  );

  if(response.statusCode == 200){
    var token = response.body.token;
    await FlutterSessionJwt.saveToken(token);
  }
}

Once token is saved, you can access the other methods as below.

  • To get payload from JWT token
//This will return payload object/map
    await FlutterSessionJwt.getPayload();
  • To get expiration date and time
//Make sure pass `exp` key in the payload
//This method will return expiration date and time
await FlutterSessionJwt.getExpirationDateTime();
  • To get issued date and time
//Make sure pass `iat` key in the payload
 await FlutterSessionJwt.getIssuedDateTime();
  • To get whether token has expired or not
//This will return bool with true/false
//If token expired, it will return true else false
await FlutterSessionJwt.isTokenExpired();
  • To get the time difference between issued time and current time
//This will return the token time
await FlutterSessionJwt.getDurationFromIssuedTime();

License

MIT

About

License:MIT License


Languages

Language:C++ 37.5%Language:CMake 30.4%Language:Dart 24.3%Language:HTML 3.0%Language:C 2.3%Language:Swift 2.3%Language:Kotlin 0.2%Language:Objective-C 0.1%