Most clients of Ingenious do not need a HTLP (High Traffic Landing Page), since the Ingenious System allows Post View attribution as a standard.
...
A HTLP is needed, if you work with a tool for deduplication (“tracking switch”) that needs to register an ad impression touchpopint touchpoint and store information (cookie, iclid) to enable attribution and conversion tracking.
...
A HTLP is opened on the publishers ad space (e.g. website, (in our example https://yourpartner.com
)) in an iframe (usually 1px by 1 1x1 px or even smaller). It’s Its purpose is to execute a tracking URL.
Drawio | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Before you start
You need an HTML file that is accessible on the shop domain (in our example https://yourshop.com
). It should not have content targeted to the user like images, text etc. (no user will see it). However, it must be able to execute all actions needed for tracking (e.g. writing a cookie etc). The exact details depend on the tracking switch/ tracking technology in use.
When the HTLP is called, Ingenious will transmit the iclid
as get parameter (ClickId) (Ingenious Click Id) as a GET-parameter. The HTLP must be able to read the value of the iclid
and save it . So this in a cookie on the shop domain, so its value can be passed on with the conversion tag later.
Example
https://yourshop.com/htlp.html?iclid=#{ICLID}
...
First, we recommend to create a dedicated creative set. Also, access to this creative set should be limited to partners that are allowed to use the HTLP.
Then, create a html HTML-creative with the following content
Code Block |
---|
<iframe src="https://(TRACKING_DOMAIN)/ts/(EXT_AVERTISER_ID)/tsv?amc=#{ADMEDIA_CODE}&rmd=3&trg=URL_OF_HTLP_ENCODED+%26iclid%3D%23%7BICLID%7D"</iframe> |
Please Replace:
(TRACKING DOMAIN)
...
with the tracking domain of your advertiser.
(EXT_AVERTISER_ID)
with the external Advertiser Id (the Id with the formatixxxxxx
)URL_OF_HTLP_ENCODED+%3Ficlid%3D%23%7BICLID%7D%0A
: This consists of two parts:The URL of the HTLP, it needs to be URL encoded. So
https://yourshop.com/htlp.html
becomeshttps%3A%2F%2Fyourshop.com%2Fhtlp.html
add the parameter and placeholder
iclid=#{ICLID}
to transmit the iclid to the URL of the HTLP (also URL encoded:%26iclid%3D%23%7BICLID%7D)
the placeholder #{ADMEDIA_CODE}
should be left as it is. It will be replaced with the publishers individual amc code for tracking purposes.
...