gpt4 book ai didi

java - 在JAAS Security中创建可以传递用户名和密码的URLConnection

转载 作者:行者123 更新时间:2023-11-30 06:00:37 24 4
gpt4 key购买 nike

嗨,我有类似以下内容的内容可以建立 URL 连接 并检索数据。问题 当我点击一个页面时 我首先需要身份验证 登录页面。我不确定如何 在中传递用户名和密码 URL连接。我正在访问一个网站 那是使用 JAAS 验证。

import java.net.URL;
import java.net.URLConnection;

.....

URL location = new URL("www.sampleURL.com");
URLConnection yc = location.openConnection();
BufferedReader in = new BufferedReader(
new InputStreamReader(
yc.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
data += inputLine + "\n";
in.close();

我尝试过类似的方法,但似乎不起作用......

URL url = new URL("www.myURL.com");
URLConnection connection = url.openConnection();
String login = "username:password";
String encodedLogin = new BASE64Encoder().encodeBuffer(login.getBytes());
connection.setRequestProperty("Proxy-Authorization", "Basic " + encodedLogin);

最佳答案

尝试“授权”,而不是“代理授权”。在针对代理而不是您尝试访问的实际 Web 服务器进行身份验证时,将使用“Proxy-Authorization” header 。

关于java - 在JAAS Security中创建可以传递用户名和密码的URLConnection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/937412/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com