firebase_verify_token_dart

Creator: coderz1093

Last updated:

Add to Cart

Description:

firebase verify token dart

Firebase Verify Token #
A plugin that allows you to verify a Firebase JWT Token for a specific firebase project.





Platform Support #



Android
iOS
MacOS
Web
Linux
Windows




✔️
✔️
✔️
✔️
✔️
✔️



About #
Token verification involves the following steps:

Check if the token was generated by the same project id.
Check if the token was generated by firebase authentication.
Check if the token has expired

Install #
Import the Check App Version package #
To use the Firebase Verify Token package, follow
the plugin installation instructions.
Use the package #
Add the following import to your Dart code:
import 'package:firebase_verify_token/firebase_verify_token.dart';
copied to clipboard
Now we need to initialize the static variable projectId in the FirebaseVerifyToken class.
You need to enter the firebase project ID.
FirebaseVerifyToken.projectId = 'my-project-id';
copied to clipboard
At this point, we can call the verify method from the FirebaseVerifyToken class, passing the
string token that we want to verify, as a parameter. The method will return TRUE if the
token is valid, FALSE if it is not.
await FirebaseVerifyToken.verify('my-token-string');
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.