Switch to Container Tabs – These Weeks in Firefox: Issue 157

petsoi@discuss.tchncs.de to Linux@lemmy.ml – 76 points –
Switch to Container Tabs – These Weeks in Firefox: Issue 157 – Firefox Nightly News
blog.nightly.mozilla.org
15

You are viewing a single comment

I think they're talking about basic Auth, with which you can pass credentials in a URL like this:

https://username:password@website.com

I thought basic Auth was where you base64 encoded the username and password and sent it as the Authorization header

That is also a form of basic auth, you still pass the credentials like "username:password", optionally base64 encoded but I don't believe that's required.

Edit: actually, after looking into it a bit more, it seems like passing credentials in the url will actually cause the browser to send it as an authorization header instead. So in essence it's doing the same thing.