fpjs_pro_plugin 1.1.0
fpjs_pro_plugin: ^1.1.0 copied to clipboard
Flutter plugin that can be used in an application to call the native FingerprintJS Pro libraries and identify devices.
example/lib/main.dart
import 'dart:async';
import 'dart:convert';
import 'package:env_flutter/env_flutter.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:fpjs_pro_plugin/fpjs_pro_plugin.dart';
Future main() async {
await dotenv.load();
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _deviceId = 'Unknown';
final String _apiKey = dotenv.env['API_KEY'] ?? 'test_api_key';
@override
void initState() {
super.initState();
_initFpjs(_apiKey);
}
Future<void> _initFpjs(String apiToken) async {
await FpjsProPlugin.initFpjs(apiToken, extendedResponseFormat: true);
}
/// The native FingerprintJS libraries expose a method called `getVisitorId`
/// to stay consistent with the original Javascript library used for browser identification.
/// However in the mobile application context a more accurate name would be something like `getDeviceId`.
Future<void> _getDeviceId() async {
String deviceId;
try {
const tags = {
'a': 'a',
'b': 0,
'c': {
'foo': true,
'bar': [1, 2, 3]
},
'd': false
};
deviceId = await FpjsProPlugin.getVisitorId(tags: tags, linkedId: 'some linkedId') ?? 'Unknown';
} on PlatformException {
deviceId = 'Failed to get device id.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_deviceId = deviceId;
});
}
Future<String> _getDeviceData() async {
String identificationInfo;
try {
const tags = {
'a': 'a',
'b': 0,
'c': {
'foo': true,
'bar': [1, 2, 3]
},
'd': false
};
const encoder = JsonEncoder.withIndent(' ');
final deviceData = await FpjsProPlugin.getVisitorData(tags: tags, linkedId: 'some linkedId');
identificationInfo = encoder.convert(deviceData);
} on PlatformException {
identificationInfo = 'Failed to get device info.';
}
return identificationInfo;
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('FPJS Pro Flutter plugin'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
onPressed: () => _getDeviceId(),
child: const Text('Identify!')),
Text('The device id is: $_deviceId\n'),
_ExtendedResultDialog(handleIdentificate: _getDeviceData)
])
),
),
);
}
}
class _ExtendedResultDialog extends StatelessWidget {
const _ExtendedResultDialog({Key? key, required this.handleIdentificate}) : super(key: key);
final AsyncCallback handleIdentificate;
@override
Widget build(BuildContext context) {
return ElevatedButton(
onPressed: () => {
handleIdentificate().then((identificationInfo) => showDialog<String>(
context: context,
builder: (BuildContext context) => AlertDialog(
title: const Text('Extended result'),
content: FittedBox(
fit: BoxFit.contain,
child: Text(identificationInfo as String),
),
actions: <Widget>[
ElevatedButton(
onPressed: () => Navigator.pop(context, 'OK'),
child: const Text('OK'),
),
],
),
))
},
child: const Text('Identify with extended result!'),
);
}
}