Introduction
During the trial, you can visualize fraudulent leads (conversions) such as spam or bots and check how frequently they are occurring.
1.Trial Setup
To use the Spider FLP trial, you need to install the Spider AF tag (JavaScript).
There are two locations where the Spider AF tags must be installed:
All Pages
Thank You Page
The tracker-01
part in each tag is a string unique to your account. Please check with your Spider representative to get the correct value.
If your CV (lead) involves form submission, the measurement tag differs from the one listed here. Please inform us separately in that case.
Also, if you are using forms via Webflow, HubSpot Form Editor, or HubSpot Legacy Forms, the tag will be different. Please contact us for instructions in those cases as well.
👉 For the specific setup procedure, please refer to this article.
If anything is unclear, we’ll be happy to assist—feel free to reach out 🙇♀️
2. Setting the Tracking Tag
In a normal form-submission CV, variables such as Order Number or User ID are passed. However, if no form exists, you will need to use an alternative value.
In such cases, use a timestamp (time information).
Use the following method to assign new Date().getTime()
to the xsid
parameter.
This gives each page view or event trigger a unique value (a time in milliseconds).
✏️ Benefits of Using a Timestamp
Ensures uniqueness: Returns a millisecond-level value, so even for the same user, a different value is generated for each event.
No form required: You can perform trial measurement without obtaining CV values from form input.
Easy implementation: Can be directly installed in GTM or any tag.
<script>
var sptrk=function(){var o="https://sp-trk.com/",t="__spd",e=(new Date).getTime();window[t]||(window[t]={init:!1});var c=window[t];cd||(cd=[]);var s=cd;function v(t){var i=document.createElement("script");i.async=!0,i.src=t,document.head.appendChild(i)}c.init||v(o+"u");var u=/^([a-z0-9]{8})-([a-z0-9]{2})$/;return function(){var t=arguments;if(s.push(t),"config"==t[0]&&!c.init&&!ca){c.init=!0;var i=t[1],n=i.match(u),a=n[1],r=n[2];if(!a||!r)throw"invalid id: "+i;var d=Math.random().toString(36).substring(2,15);v(o+"t/"+a+"?"+("a="+e+"&o="+d))}}}();
sptrk('config', '<tracker>-01', {
xsid: new Date().getTime()
});
sptrk('event', 'conversion');
</script>