[julia-users] Re: Requests.jl with HTTP Basic Authentication

2016-01-27 Thread Josef Sachs
> On Tue, 26 Jan 2016 08:07:30 -0500, Josef Sachs said: > Is there a way to use Requests.jl with HTTP Basic Authentication > when the password contains a slash? > julia> using Requests > julia> get("https://user:pass/w...@google.com";) > ERROR: Port must be numeric (decimal) > in parse_auth

Re: [julia-users] Re: Requests.jl with HTTP Basic Authentication

2016-01-26 Thread Josef Sachs
> On Tue, 26 Jan 2016 21:01:45 +0200, Joshua Ballanco said: > Have you tried URL encoding the slash? Something like: > “pass%2Fword”? In my original post, I said this (I guess I shouldn't have clipped it from my response): I tried RFC 3986 percent-encoding the password, which turns the slash

Re: [julia-users] Re: Requests.jl with HTTP Basic Authentication

2016-01-26 Thread Joshua Ballanco
On January 26, 2016 at 15:42:11, Josef Sachs (sa...@cyb.org(mailto:sa...@cyb.org)) wrote: > Here is the URL that I tried to post, with the parts on separate lines. > https: > // > user > : > pass/word > @ > google.com > > I was trying to demonstrate a password with a slash in it. > The @ follow

[julia-users] Re: Requests.jl with HTTP Basic Authentication

2016-01-26 Thread Josef Sachs
> On Tue, 26 Jan 2016 05:30:57 -0800 (PST), said: > On Tuesday, January 26, 2016 at 11:07:37 PM UTC+10, Josef Sachs > wrote: >> >> Is there a way to use Requests.jl with HTTP Basic Authentication >> when the password contains a slash? >> julia> using Requests >> julia> get("https://user:pa

[julia-users] Re: Requests.jl with HTTP Basic Authentication

2016-01-26 Thread elextr
On Tuesday, January 26, 2016 at 11:07:37 PM UTC+10, Josef Sachs wrote: > > Is there a way to use Requests.jl with HTTP Basic Authentication > when the password contains a slash? > > julia> using Requests > > julia> get("https://user:pass/wo...@google.com ") > Doesn't it need an @ after the