Fingerprint Web

The Fingerprint is the digital identification of the shopper's device. This identification is made up of a series of data collected on the checkout page of the website or application.

Integration with your checkout page (website)

How does it work?

Integração com sua página de checkout (site)
  1. The store's checkout page sends the attributes of the shopper's device to Iovation, thus creating the black box;
  2. The store owner receives the encrypted character sequence from Iovation and writes it on the checkout page in a hidden ​​field;
  3. The store owner sends the black box to Braspag, along with the other transaction data to be analyzed;
  4. Braspag receives all the data, validates it and sends it to ACI Worldwide;
  5. ACI Worldwide receives all the data, sends the black box to Iovation for decryption;
  6. ACI Worldwide receives the attributes of the shopper's device from Iovation.

How to configure?

  1. Include Iovation's javascript on your checkout page;
  2. Add configuration parameters in JavaScript;
  3. Create a hidden ​​field on your page to write the black box to it and send it along with the transaction data to be analyzed.

ℹ️

Important

Do not cache the script, as multiple devices may be identified as being the same.

Including Iovation JavaScript

To include JavaScript, add the following <script> element to your checkout page.

This is the URL for Iovation's version of snare.js: <script type=”text/javascript” src=”https://mpsnare.iesnare.com/snare.js”></script>

Configuration parameters

ParameterDescriptionDefault
io_install_flashDetermines whether the user will be prompted to install Flash or update the versionfalse
io_flash_needs_handlerThis parameter will only be valid if the io_install_flash parameter is set to TRUE, otherwise it will not be executed.
You can customize your own message here if Flash is not installed.
Ex.: var io_flash_needs_handler = "Alert('Install Flash');"
-
io_install_stmDetermines whether the user will be prompted to install Active X, which helps collect hardware information.
This control is only available for Internet Explorer, and if Active X is already installed, this setting will have no effect
false
io_exclude_stmDetermines whether Active X should run when installed.
You can choose to disable the control for specific platforms.
Possible values:
0 - runs on all platforms
1 - does not run on Windows 9.x (including versions 3.1, 95, 98 and ME)
2 - does not run on Windows CE
4 - does not run on Windows XP (including versions NT, 2000, 2003 and 8)
8 - does not run on Windows Vista
Note: The values ​​are the combination of the sums of the above values, for example: 12 - does not runs on Windows XP (4) or Windows Vista (8)
15
io_bbout_element_idID of the HTML element to fill with the black box
If the io_bb_callback parameter is set, this will have no effect
-
io_enable_ripDetermines whether to attempt to collect information to obtain the buyer's real IP addresstrue
io_bb_callbackParameter to customize the check that the black box collection has been completed
When using, write the function according to the following syntax:
io_callback(bb, complete), where:
bb - black box value
complete - boolean value indicating that the collection is complete
-

⚠️

Attention

Configuration parameters must be placed before the call to the above tag; they determine how the Iovation JavaScript will work, and errors may occur if they are placed before the JavaScript call.

Example:

Exemplo: Incluindo o JavaScript da Iovation