diff --git a/examples/headers_and_user_agents.rb b/examples/headers_and_user_agents.rb new file mode 100644 index 0000000..8e55aff --- /dev/null +++ b/examples/headers_and_user_agents.rb @@ -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})