0.0
The project is in a healthy, maintained state
Make HTTP requests through a tor as proxy.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Proxied request

Make requests through tor.

Installation

Run tor docker container:

./tor.sh

OR

Locate your torrc (Tor Browser\Browser\TorBrowser\Data\Tor) file and add the following line:

SocksPort 127.0.0.1:9050

Install the gem:

gem install proxied_request

Usage

  1. Start tor

  2. Make a request:

require 'proxied_request'

# Make a request through tor
response = ProxiedRequest::HTTP.request('https://api.ipify.org')
puts response.body # =>

# Make a request through tor with a custom user agent
config = ProxiedRequest::Config.new
config.set_header('User-Agent', 'Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0')
config.type = MethodType::POST
config.body = 'foo=bar'
response = ProxiedRequest::HTTP.request('https://api.ipify.org', config)
puts response.body # =>