Project

General

Profile

Actions

Bug #435

closed

open-uri.rb 407 Proxy Authentication Required (OpenURI::HTTPError)

Added by Anonymous over 15 years ago. Updated almost 13 years ago.

Status:
Rejected
Assignee:
-
Target version:
-
ruby -v:
[ruby-core:18262]

Description

=begin
Even if i set in /usr/lib/ruby/1.8/open-uri.rb proxy settings like that:
module OpenURI
Options = {
:proxy => "http://user:password@192.168.1.1:8080",
:progress_proc => true,
:content_length_proc => true,
:http_basic_authentication => true
}
i will get 407 error.

To fix that replace:
if proxy
klass = Net::HTTP::Proxy(proxy.host, proxy.port)
end
with:
if proxy
klass = Net::HTTP::Proxy(proxy.host, proxy.port, proxy.user, proxy.password)
end
=end


Related issues 4 (0 open4 closed)

Related to Ruby master - Feature #3848: Using http basic authentication for FTP with Open URIClosedakr (Akira Tanaka)Actions
Related to Ruby master - Feature #4071: support basic auth for Net::HTTP.get requestsClosed11/19/2010Actions
Related to Ruby master - Bug #4388: open-uriで環境変数http_proxyを使うときに認証付きのProxyが使えませんRejectedActions
Related to Ruby master - Feature #12921: Retrieve user and password for proxy from envClosedActions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0