Can anyone tell me, how can I get this browser authentication window ?
相关问题
- Angular RxJS mergeMap types
- java client program to send digest authentication
- Google Apps Script: testing doPost() with cURL
- How to instantiate Http service in main.ts manuall
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
相关文章
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- Is there a size limit for HTTP response headers on
- Is a unicode user agent legal inside an HTTP heade
- git: retry if http request failed
- What is the definition of HTTP_X_PURPOSE?
- Flutter - http.get fails on macos build target: Co
-
Is it bad to put elements within the <hea
- Why does Google Chrome NOT use cached pages when I
查看全部
The authentication you are talking is called Basic Authentication in web based application where browser popup will be used to get user credentials.
Which Java Application Server you are using ?
To know more about Basic Authentication look at this page
This popup is part of the HTTP-Authentication. In order to get it, you need to enable it in your web server. As Wikipedia puts it:
That type of window pops up when a web server responds to a request by returning an "Unauthorized" (401) status code. You'd have to tell the server to send that type of response in order to trigger the popup.