Fingerprint is a device intelligence platform offering industry-leading accuracy. Fingerprint Pro React SDK is an easy way to integrate Fingerprint Pro into your React application. It's also compatible with Next.js and Preact. See application demos in the examples folder.
- React 18 or higher
- For Preact users: Preact 10.3 or higher
- For Next.js users: Next.js 13.1 or higher
- For Typescript users: Typescript 4.8 or higher
Note
This package assumes you have a Fingerprint Pro subscription or trial, it is not compatible with the source-available FingerprintJS. See our documentation to learn more about the differences between Fingerprint Pro and FingerprintJS.
Using npm:
npm install @fingerprintjs/fingerprintjs-pro-reactUsing yarn:
yarn add @fingerprintjs/fingerprintjs-pro-reactUsing pnpm:
pnpm add @fingerprintjs/fingerprintjs-pro-reactIn order to identify visitors, you'll need a Fingerprint Pro account (you can sign up for free). To get your API key and get started, see the Fingerprint Pro Quick Start Guide.
- Set
apiKeyto your Fingerprint Public API Key. - Set
regionif you have chosen a non-global region during registration. - Set
endpointandscriptUrlPatternif you are using one of our proxy integrations to increase accuracy and effectiveness of visitor identification. - You can use all the load options available in the JavaScript agent
loadfunction.
// src/index.js
import React from 'react'
import ReactDOM from 'react-dom/client'
import {
FpjsProvider,
FingerprintJSPro,
} from '@fingerprintjs/fingerprintjs-pro-react'
import App from './App'
const root = ReactDOM.createRoot(document.getElementById('app'))
root.render(
<FpjsProvider
loadOptions={{
apiKey: 'your-public-api-key',
// region: 'eu',
endpoint: [
// 'metrics.yourwebsite.com',
FingerprintJSPro.defaultEndpoint,
],
scriptUrlPattern: [
// 'https://metrics.yourwebsite.com/web/v<version>/<apiKey>/loader_v<loaderVersion>.js',
FingerprintJSPro.defaultScriptUrlPattern,
],
}}
>
<App />
</FpjsProvider>
)// src/App.js
import React from 'react'
import { useVisitorData } from '@fingerprintjs/fingerprintjs-pro-react'
function App() {
const { isLoading, error, data } = useVisitorData()
if (isLoading) {
return <div>Loading...</div>
}
if (error) {
return <div>An error occured: {error.message}</div>
}
if (data) {
// Perform some logic based on the visitor data
return (
<div>
Welcome {data.visitorFound ? 'back' : ''}, {data.visitorId}!
</div>
)
} else {
return null
}
}
export default AppThe useVisitorData hook also returns a getData method you can use to make an API call on command.
- You can pass
{ ignoreCache: true }touseVisitorDatato force a fresh identification request. - You can pass
{ immediate: false }touseVisitorDatato disable automatic visitor identification on render.
Both useVisitorData and getData accept all the get options available in the JavaScript agent get function.
// src/App.js
import React, { useState } from 'react'
import { useVisitorData } from '@fingerprintjs/fingerprintjs-pro-react'
function App() {
const { isLoading, error, getData } = useVisitorData(
{ ignoreCache: true },
{ immediate: false }
)
const [email, setEmail] = useState('')
if (isLoading) {
return <div>Loading...</div>
}
if (error) {
return <div>An error occurred: {error.message}</div>
}
return (
<div>
<form
onSubmit={(e) => {
e.preventDefault()
getData()
.then((data) => {
// Do something with the visitor data, for example,
// append visitor data to the form data to send to your server
console.log(data)
})
.catch((error) => {
// Handle error
})
}}
>
<label htmlFor='email'>Email:</label>
<input
type='email'
value={email}
onChange={(e) => setEmail(e.currentTarget.value)}
/>
<button type='submit'>Subscribe</button>
</form>
</div>
)
}
export default App- See the full code example in the examples folder.
- See our Use cases page for open-source real-world examples of using Fingerprint to detect fraud and streamline user experiences.
The visitorId provided by Fingerprint Identification is especially useful when combined with information you already know about your users, for example, account IDs, order IDs, etc. To learn more about various applications of the linkedId and tag, see Linking and tagging information.
Associate the visitor ID with your data using the linkedId or tag parameter of the options object passed into the useVisitorData() hook or the getData function:
// ...
function App() {
const { isLoading, error, getData } = useVisitorData({
linkedId: 'user_1234',
tag: {
userAction: 'login',
analyticsId: 'UA-5555-1111-1',
},
})
}
// ...Fingerprint Pro usage is billed per API call. To avoid unnecessary API calls, it is a good practice to cache identification results. By default, the SDK uses sessionStorage to cache results.
- Specify the
cacheLocationprop on<FpjsProvider>to instead store results inmemoryorlocalStorage. Usenoneto disable caching completely. - Specify the
cacheTimeInSecondsprop on<FpjsProvider>to set the cache time in seconds. It cannot exceed 86400 seconds (24 hours). - Specify the
cacheprop on<FpjsProvider>to use your custom cache implementation instead. For more details, see Creating a custom cache in the Fingerprint Pro SPA repository (a lower-level Fingerprint library used by this SDK). - Pass
{ignoreCache: true}to thegetData()function to ignore cached results for that specific API call.
Note
If you use data from extendedResult, pay additional attention to your caching strategy.
Some fields, for example, ip or lastSeenAt, might change over time for the same visitor. Use getData({ ignoreCache: true }) to fetch the latest identification results.
The getData function throws errors directly from the JS Agent without changing them. See JS Agent error handling for more details.
See the full generated API reference.
To ask questions or provide feedback, use Issues. If you need private support, please email us at [email protected]. If you'd like to have a similar React wrapper for the source-availalbe FingerprintJS, consider creating an issue in the main FingerprintJS repository.
This project is licensed under the MIT license. See the LICENSE file for more info.