mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Added documentation via example of how to send custom user agents
This commit is contained in:
parent
8fe9fda811
commit
d88eeff485
1 changed files with 6 additions and 0 deletions
6
examples/headers_and_user_agents.rb
Normal file
6
examples/headers_and_user_agents.rb
Normal file
|
@ -0,0 +1,6 @@
|
|||
# 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.
|
||||
|
||||
require 'httparty'
|
||||
|
||||
APPLICATION_NAME = "Httparty"
|
||||
response = HTTParty.get('http://example.com', :headers => {"User-Agent" => APPLICATION_NAME})
|
Loading…
Reference in a new issue