URL redirections and determining redirect chain

URL redirections and determining redirect chain

Client-side redirect

Tradedoubler does client-side redirect (not server side) via meta refresh and Javascript as backup.

Example here: https://clk.tradedoubler.com/click?a(2320500)p(204344)ttid(13)url(https://www.conrad.ch/de/promotions/benefits/assortment-discount-ec2sr13.html)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>

<head>
  <script type="text/javascript" src="https://vht.tradedoubler.com/fp/prefs.js"></script>

  <noscript>
    <meta http-equiv="refresh" content="0; url=click?a(2320500)p(204344)ttid(13)url(https://www.conrad.ch/de/promotions/benefits/assortment-discount-ec2sr13.html)&f=0" />
  </noscript>
  <meta http-equiv="refresh" content="2; url=click?a(2320500)p(204344)ttid(13)url(https://www.conrad.ch/de/promotions/benefits/assortment-discount-ec2sr13.html)&f=0" />
</head>

<body>
  <script>
    var f = document.createElement('form'); f.action = 'click?a(2320500)p(204344)ttid(13)url(https://www.conrad.ch/de/promotions/benefits/assortment-discount-ec2sr13.html)'; f.method = 'POST';
    var fp = document.createElement('input'); fp.type = 'hidden'; fp.name = 'f'; fp.value = fortyone.collect(); f.appendChild(fp);
    var rfr = document.createElement('input'); rfr.type = 'hidden'; rfr.name = 'referer'; rfr.value = ''; f.appendChild(rfr);
    document.body.appendChild(f); f.submit();
  </script>
</body>
</html>

Good javascript example on client-side redirects:

http://insider.zone/tools/client-side-url-redirect-generator/


Komanda da vidim sve redirekcije (ceo Redirect Chain) ali SAMO za serverske redirekcije:

wget URL 2>&1 | grep Location:

Na oba mogu DOSTA da zaključim:

Ne znači ništa: awinmid je “Merchant ID” (Advertizer ID) awinaffid je verovatno “moj ID, publisher ID)

Mnogo njih ima i: utm_campaign, utm_content, utm_source=awin, utm_medium=affiliate

Znači za Deep link: ako postoji clickref (preko AWIN) to je super i unique ued je URL na koji se ide i on može često da ima utm_campaign

https://wiki.awin.com/index.php/Publisher_Click_Ref

??? FireAW PLUGIN???? Firefox? tidd.ly https://wiki.awin.com/index.php/FAQ_Publisher_Interface#Publisher_Profile

https://chrome.google.com/webstore/detail/myawin/mlnpcceaeigcohdpaddmkllbgnkgeoed

https://wiki.awin.com/index.php/Publisher_Recruitment

https://www.awin.com/us/publishers/tools https://www.awin.com/us/bounceless-tracking / https://wiki.awin.com/index.php/Publisher-MasterTag

BLOCK REDIRECT? Accessibility.blockautorefresh - MozillaZine Knowledge Base https://support.mozilla.org/en-US/questions/1180358#answer-1018639 https://support.mozilla.org/en-US/questions/1025367#answer-640441

https://www.reddit.com/r/firefox/comments/69aqq1/is_it_possible_to_prevent_url_redirection/dh5padi/ https://superuser.com/a/1468137

accessibility.blockautorefresh (not important) network.http.prompt-temp-redirect (not important) network.http.redirection-limit 0 - ovo radi i ne moraš restart posle promene

https://addons.mozilla.org/en-US/firefox/addon/skip-redirect/ odnosno https://addons.mozilla.org/en-US/firefox/addon/remove-redirect/

SRANJE! https://blog.mozilla.org/security/2020/08/04/firefox-79-includes-protections-against-redirect-tracking/

date 01. Jan 0001 | modified 29. Dec 2023
filename: URL redirects