Switch User Agent

A

Alex Amat

Hi all I'm writing an application in ruby and I need to change the
UAProof of an HTTP request that I'm sending out. (To pretend that my
browser is a mobile phone) does anyone know how to go about it.

Many thanks
 
G

Gene Tani

Alex said:
Hi all I'm writing an application in ruby and I need to change the
UAProof of an HTTP request that I'm sending out. (To pretend that my
browser is a mobile phone) does anyone know how to go about it.

Many thanks

I haven't seent the term UAproof before, but the open-uri and Net::HTTP
ways of opening URLs are both dict-like as far as passing User-Agents
etc:

http://www.ruby-doc.org/stdlib/libdoc/open-uri/rdoc/

e.g.
Net::HTTP.start( 'www.digg.com', 80 ) do |http|
print( http.get( '/', "User-Agent" => "foobar" ).body ) ; end

setting referrer/referer (can't remember which is correct!) is similar
 
G

Gene Tani

Gene said:
I haven't seent the term UAproof before, but the open-uri and Net::HTTP
ways of opening URLs are both dict-like as far as passing User-Agents
etc:

http://www.ruby-doc.org/stdlib/libdoc/open-uri/rdoc/

e.g.
Net::HTTP.start( 'www.digg.com', 80 ) do |http|
print( http.get( '/', "User-Agent" => "foobar" ).body ) ; end

setting referrer/referer (can't remember which is correct!) is similar

whoops, forgot the great zenspider slides:
http://www.zenspider.com/dl/rubyconf2005/open-uri.pdf
 
A

Alex Amat

Sorry mate I meant User Agent (I'm a bit new to the world of ruby and
internet)
What I'm doing is a web site that changes normal PC websites into MCS
sites I've got three ifreams so that the rendered sites can be
previewed, all I need to do is change the user agent of the request
object so that my application delivers the content for different user
agents.

Thanks a lot !
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top