vote up 0 vote down star
2

I'm coding a Firefox extension and want to get Basic Authentication information for a website (or for the current document).

How can I get Basic Authentication Information in a Firefox Extension?

flag

1 Answer

vote up 0 vote down check

I couldn't find an exact answer and don't have time to experiment now, but it seems that the only way is to manually examine headers using NsIHttpChannel.

EDIT: Ok, I've found nsIHttpAuthManager:

This service provides access to cached HTTP authentication user credentials (domain, username, password) for sites visited during the current browser session.

Looks like exactly what you need.

link|flag
I assume for this I have to carry out a test request, but it should be already in Firefox's memory. I'm trying to avoid extra requests actually. – dr. evil Mar 13 at 18:09
I didn't find any exception working with user credentials, but while looking for it, found nsIHttpAuthManager interface. – Eugene Morozov Mar 13 at 21:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.