Skip to content

fluidpay/fluidpay-guardian

Repository files navigation

Guardian

release

Guardian is a user data collector tool, created for payment fraud protection.

Usage

With CDN:

Add the following code snippet into your html file's head.

<script src="https://unpkg.com/@gwservices/guardian@latest/dist/guardian.umd.js"></script>
<script>
    new Guardian('https://my_gateway_url', 'public_api_key').process();
</script>

With import:

import Guardian from '@gwservices/guardian';

let guard = new Guardian('https://my_gateway_url', 'public_api_key').process();

// Optional
Guardian.getData().then((data) => {
    console.log(data);
});

(Optional) Get the collected data

You can do it before submitting your form and attach the result to your request.

<script>
    Guardian.getData().then((data) => {
        console.log(data);
    });
</script>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •