From: Benjamin G. <go...@in...> - 2006-08-11 17:02:11
|
> > Do you have any control over your user agent string? > > Could you append " WWW::Connotea" to it to indicate a Web API > compliant application? It's the string we use in the WWW::Connotea > Perl library but it's a fast cheap hack to giving you "human" level > access. Missed this in my first Doc scan... Here it is for Java: HttpURLConnection conno = (HttpURLConnection) connoU.openConnection(); conno.setRequestProperty("User-Agent", "Java/1.5.0_06/WWW::Connotea"); -Ben(G) |