Escaping username characters in basic auth URLs
When using http basic authentication, the username can be passed in the URL, e.g.
But now suppose the username is an email address, e.g. david@company.com. Doing this is clearly ambiguous:
Is there a way to escape the @ character in the username? I tried standard URL encoding:
But that didn't do it.
| |||||
|
Não encontrou uma resposta? Pergunte em Stack Overflow em Português.
42
|
According to RFC 3986, section 3.2.1, it needs to be percent encoded:
So it looks like
Is right. Where are you trying to read it? Maybe you need to manually decode the value?
| ||||||||||||||||
|