Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Click tracking with Doubleclick Click Tracker Tag

I have a click tracker tag which is something like

http://ad.doubleclick.net/ddm/clk/27406XXXX;10700XXXX;v?https://www.XYZ.com/

My question is if I change/update the click-through URL in the tag like

http://ad.doubleclick.net/ddm/clk/27406XXXX;10700XXXX;v?https://www.ABC.com/

will it still track the click in the same way as it was working before updating the click-through URL?

like image 711
Hanumendra Avatar asked Nov 14 '25 18:11

Hanumendra


2 Answers

Yes. Static click trackers track based on everything before the query string, and then use the URL to inform the redirect.

like image 55
Phil Wright Avatar answered Nov 17 '25 09:11

Phil Wright


Make sure to not encode the destination URL in the query string, because Google doesn't decode it and then the redirection fails.

like image 20
DiClem Avatar answered Nov 17 '25 09:11

DiClem