Discussions

Ask a Question

What are the data you are collecting from the user device?

You are just saying ,'we are collecting 70+ data '. what are the data you are collecting

IP checks via API

I am looking for a solution that allow me to send an IP address via API and get the advanced checks regarding it like VPN, TOR etc etc. Is this possible to achieve via API or always must be used withing SDK? As part of the onboarding our users will be enterinhg their phone number, email, birth date and F/L Name. With those we run watchlist screening, email and phone risk checks AND we were expecting top also have an IP advanced check. Our expectation was to have all of this without needing to use any kind of SDK that would imply adding a screen in the user experience. That is why we are seeking for a solution that could enable us to collect the IP address from our end and send it via API to get the checks for that IP address(is it a VPN? is the IP address from a sanctioned country? etc etc) Thank you!
ANSWERED

IP Check. Possible via API or must use SDK?

I am looking for a solution that allow me to send an IP address via API and get the advanced checks regarding it like VPN, TOR etc etc. <br /> Is this possible to achieve via API or always must be used withing SDK?
ANSWERED

Domain not found error for cloudflare integration

We are trying to integrate with cloudflare from and for that I was following `App settings -> integrations -> cloudflare wizard.` In the next step after inserting the Cloudflare AccountId and API key we are getting _choose domain_ screen where I can see two domains listed; but for both the domains, I am getting **Domain not found** error. Please let me know if I am missing something here
ANSWERED

Can we get visitor information without using hook in react?

Can we directly call an API to fetch visitor information instead of using the hook? Additionally, what occurs if a request for visitor information is in progress and another request is made from the same device or browser?
ANSWERED

Our company encountered teh following problems when useing

Often appear this errr information: Failed to fetch dynamically imported module: <https://fpjscdn.net/v3/xxxxx>
ANSWERED

Fingerprint header signature validation failing

Hi, For the webhook api in my server code, I am handling header signature validation for authorization. I recently added this header signing middleware in my express js code and moved the app to Production. Strangely close to 6% of the total requests are failing with Invalid webhook Signature error. This is close to 50K requests getting failed. I want to know what's wrong here. In my middleware code: I am using `Buffer.from(JSON.stringify(req.body))` to get the payload and using the `IsValidWebhookSignature` method from `@fingerprintjs/fingerprintjs-pro-server-api` sdk package. I am using the secret generated while creating the webhook in fingerprint dashboard. Please let me know what went wrong. Also It would be helpful to know how fingerprint generates the signature internally to validate that `JSON.stringify()` don't have any problems.
ANSWERED

How fingerprint cooperates with Cookies?

I have application that is already successfully working with cookies. And I want to add fingerprint to enhance my app. Will my cookies and fingerprint work together and how? Will cookies be default method and fingerprint proceeds when cookies are unavailable?
ANSWERED

The question about UA

why I got the same fingerprint (fingerprint A), even the UA has been changed on the same browser (chrome)? Then, I changed back to the original UA, but I got a different fingerprint (fingerprint B)?
ANSWERED

What will be the value of Origin header value in a webhook request coming to my application?

I am implementing CORS in my application as an additional layer of security. What will be the value of origin header when the webhook request is coming to my application. This can help me add the origin value to the list of allowed origins for CORS to work.