How can I get the "Realm" message sent in the WWW-Authenticate header by a server requesting HTTP Basic authentication?
feedback
|
closed as not a real question by minitech, DaveShaw, Kyle Trauberman, casperOne♦ Dec 9 '11 at 3:58
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
Not really sure what the issue the down-voters have with this question really is. Here's the rough code to get the WWW-Authenticate header that contains the Basic authentication realm. Extracting the actual realm value from the header is left as an exercise, but should be quite straightforward (e.g. using regular expression).
| |||
|
feedback
|
|
I'm assuming you want to create a Web Request with Basic Authentication. If that's the correct assumption, the following code is what you need:
| |||
|
feedback
|