🌐Browser SDK
This page describes how to install and use the JavaScript client-side SDKIntroduction#
The Browser SDK is a central component of the FoxHat integration, and provides device fingerprinting, behavioral analysis, and client-side event monitoring.All the client-side SDKs, have two main purposes:Create request tokens. Generate a unique token to be passed to your server and used when calling FoxHat's Risk and Filter APIs.Features#
Headless browser detection
Detectable Stealth Plugins#
Installation#
Usage#
Initializing the SDK#
Once installed, the SDK needs to be configured using your Publishable Key, which can be found in the Dashboard .Parameters:#
apiKey
: Your unique API key provided by FoxHat, required for SDK initialization.
debugMode
: The second parameter (true
) enables debug mode, which can be helpful during development.
Creating tokens#
Once the SDK is initialized, you can retrieve a security token necessary for making authorized API requests. Here's how to obtain, display, and pass the token to your request headers:👍Adblock-safe#
Many analytics solution rely on the client-side SDK performing outgoing API requests, which results in them getting blocked by adblockers and privacy plugins. FoxHat.js won't make such requests, resulting in much higher accuracy.Tokens don't live forever#
A new token value should to be generated for each request to your backend. A request token will expire after 30 seconds and should only be used during a single request to your backend. The reason for this is that FoxHat.js continuously monitors behavior in the user session and the data will need to be fresh when processed by the FoxHat APIs. A scalable approach is to implement the token generation as a client-side middleware which generates a new request token with each request to your backend. Modified at 2024-11-04 21:07:18