Rich, you may want to check out clojure-http-client.
https://github.com/technomancy/clojure-http-client

(require '[clj-http.client :as client])
(spit "result.html" (client/get "http://www.google.com/search?q=clojure";))

On Friday, March 22, 2013 12:09:07 AM UTC-7, Rich Morin wrote:
>
> I've been successfully using slurp and laser to harvest and pull 
> apart some web pages.  However, I can't figure out how to use 
> Google Search from my code. 
>
> My first thought was to use the Google Search API, but after 
> a lot of frustration in trying to get and use an API key, I 
> gave up on that. 
>
> My next thought was to slurp in a page from the interactive 
> Google Search facility, using the URL from Advanced Search: 
>
>   "http://www.google.com/search?hl=en&as_q=..."; 
>
> However, this gives me a 403 nastygram: 
>
>   IOException Server returned HTTP response code: 403 for URL: 
>   https://www.google.com/search?hl=en&as_q=&as_epq=... 
>   sun.net.www.protocol.http.HttpURLConnection.getInputStream 
>   (HttpURLConnection.java:1436) 
>
> Has anyone here, by chance, been able to do this sort of thing? 
>
> -r 
>
>  -- 
> http://www.cfcl.com/rdm            Rich Morin 
> http://www.cfcl.com/rdm/resume     r...@cfcl.com <javascript:> 
> http://www.cfcl.com/rdm/weblog     +1 650-873-7841 
>
> Software system design, development, and documentation 
>
>
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to