jwt_decoder 1.0.1 copy "jwt_decoder: ^1.0.1" to clipboard
jwt_decoder: ^1.0.1 copied to clipboard

outdated

Json Web Tokens decoder.

example/example.dart

import 'package:jwt_decoder/jwt_decoder.dart';

main() {
  String token =
      "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6Ikd1c3Rhdm8iLCJpYXQiOjE1MTYyMzkwMjIsImV4cCI6NDczNDYxNTg1OH0.hh-TTBPS8z-UxdmfXWn7AwW2y_Lq3aPnlIQdqV2KEC4";

  // decode() method will decode your token's payload
  Map<String, dynamic> decodedToken = JwtDecoder.decode(token);
  // Now you can use your decoded token
  print(decodedToken["name"]);

  // isExpired() method will tell you if your token is already expired or not.
  // An useful method when you have to handle sessions and you want the user
  // to authenticate if has an expired token
  bool isTokenExpired = JwtDecoder.isExpired(token);

  if (!isTokenExpired) {
    // The user should authenticate
  }
}
440
likes
0
pub points
99%
popularity

Publisher

unverified uploader

Json Web Tokens decoder.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on jwt_decoder