Meeticorp

The following presents a guideline on how Meeticorp standard and rich media tags should be edited to count clicks in Google Ad Manager. In order to track clicks follow the procedure below:

JavaScript Code

Original Code

You should have received some JavaScript code from Meeticorp that looks similar to the following example:

<SCRIPT LANGUAGE=”JavaScript1.1″ SRC=”http://www.meetic-partners.com/call/adj/256875/125789642/AD.meeticcorp/300×250/[timestamp]/no?[countgo]”>
</SCRIPT>
<NOSCRIPT>
<a href=”http://www.meetic-partners.com/call/jumpi/256875/125789642/AD.meeticcorp/300×250/[timestamp]/no?” target=”_blank”>
<img src=”http://www.meetic-partners.com/call/adi/256875/125789642/AD.meeticcorp/300×250/[timestamp]/no?” border=”0″>
</a>
</NOSCRIPT>

Modified Code

What you need to do is modify the URL in the <SCRIPT> tag as shown by the highlighted changes, The resulting tag should look similar to the following example:

<SCRIPT LANGUAGE=”JavaScript1.1″ SRC=”https://www.meetic-partners.com/call/adj/256875/125789642/AD.meeticcorp/300×250/
%%CACHEBUSTER%%no?%%CLICK_URL_ESC%%”>
</SCRIPT>
<NOSCRIPT>
<a href=”%%CLICK_URL_UNESC%%https://www.meetic-partners.com/call/jumpi/256875/125789642/AD.meeticcorp/300×250/%%CACHEBUSTER%%/no?” target=”_blank”>
<img src=”https://www.meetic-partners.com/call/adi/256875/125789642/AD.meeticcorp/300×250/%%CACHEBUSTER%%/no?” border=”0″>
</a>
</NOSCRIPT>

Note

The ad server recognises the [timestamp] placeholder and will automatically replace it with a cache buster. It is not necessary to convert it to the %%CACHEBUSTER%% macro manually.

Use %%CLICK_URL_UNESC%% at the beginning of a link. Use %%CLICK_URL_ESC%% when the click-tracker is the parameter of another URL.

<a href="%%CLICK_URL_UNESC%%https://www.google.com">link</a>
<a href="https://www.google.com?rd_url=%%CLICK_URL_ESC%%">link</a>