I have a webpage that is only accessible over http basic auth. How can I figure out the basic auth username in javascript in that page. i.e. when someone visits it (after logging in), I want to make a popup that says "Hello, you're currently signed in as the user $USERNAME"
I have a webpage that is only accessible over http basic auth. How can I figure out the basic auth username in javascript in that page. i.e. when someone visits it (after logging in), I want to make a popup that says "Hello, you're currently signed in as the user $USERNAME"
Share Improve this question asked Aug 11, 2010 at 15:56 AmandasaurusAmandasaurus 60.7k74 gold badges193 silver badges255 bronze badges2 Answers
Reset to default 15It's not possible purely from JavaScript. You'd have to have the server side script pick up the username from the request, and insert it in the generated page code for the script to pick up. (eg. <script type="text/javascript">var username=
(insert JSON-encoded string here);</script>
.
javascript:window.alert(document.location)
seems to give a URL with a username (but no password). This may not be true in other browsers.