Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 928 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 928 Bytes

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>