Quote:
|
The Adsense ads are generated when the adsense javascript is executed by a client browser that is javascript enabled. The Adsense bot does not visit any pages UNTIL the javascript runs
|
I know chrishirst, I know.
But for my application the 'visit' of this page:
Code:
66.249.65.145 - - [04/Jul/2007:12:03:01 +0200] "GET /microblog/insert/step02.do?text=hola HTTP/1.1" 200 12847 "-" "Mediapartners-Google/2.1"
is the same that submit this form:
Code:
<form action="/microblog/insert/step02.do" method="get">
<input type="text" name="text"/>
<input type="submit"/>
</form>
And the 'Adsense's visit', or 'Adsense's petition', or Adsense's Html Request', or whatever you want to call it is exactly this:
Code:
http://myaplication.com/microblog/insert/step02.do?text=hola
And I don't mind if the petition (sorry Http Request) is done before or until the javascript runs.. the point is that the Asense's visit is done. And my application receives the petition (or whatever you want to call it) and the double insert is done.
So, Is there any suggestion for protect my application against the 'Adsense's visits' that my application receive and produce doubles inserts?
|