Guardian is a user data collector tool, created for payment fraud protection.
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>
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);
});
You can do it before submitting your form and attach the result to your request.
<script>
Guardian.getData().then((data) => {
console.log(data);
});
</script>