mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
10 lines
450 B
Ruby
10 lines
450 B
Ruby
# To send custom user agents to identify your application to a web service (or mask as a specific browser for testing), send "User-Agent" as a hash to headers as shown below.
|
|
|
|
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
require File.join(dir, 'httparty')
|
|
require 'pp'
|
|
|
|
response = HTTParty.get('http://example.com', {
|
|
headers: {"User-Agent" => "Httparty"},
|
|
debug_output: STDOUT, # To show that User-Agent is Httparty
|
|
})
|