[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] http authentication
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] http authentication
- From: henrik (at) hswn.dk (Henrik Stoerner)
- Date: Fri, 14 Apr 2006 18:23:49 +0200
- References: <443FBD4E.8050001@bankinfo.com>
- User-agent: Mutt/1.5.9i
On Fri, Apr 14, 2006 at 10:18:38AM -0500, sladewig wrote:
> Greetings,
>
> I have a question. In bb-hosts to setup Basic Authentication you use:
>
> http://USERNAME:PASSWORD (at) www.sample.com/
>
> I have a login to use that requires the username to be an email address.
> So I have:
>
> http://first.last (at) somewhere.com:secretpass (at) www.sample.com/
>
> How can I escape this?
"@" is ASCII 64=0x40 (hex). So:
http://first.last%40somewhere.com:secretpass (at) www.sample.com/
Regards,
Henrik