gpt4 book ai didi

android - 使用 WebView 设置HttpAuthUsernamePassword?

转载 作者:IT王子 更新时间:2023-10-28 23:26:45 27 4
gpt4 key购买 nike

我正在尝试进行基本身份验证以查看 protected 网址。我想访问如下所示的 protected 网址:

http://api.test.com/userinfo/vid?=1234

所以我使用 WebView 执行以下操作:

mWebView.setHttpAuthUsernamePassword("api.test.com", "", "me@test.com", "mypassword");
mWebView.loadUrl("http://api.test.com/userinfo/user?uid=53461");

但身份验证似乎不起作用,我只是得到一个输出错误页面。我在这里正确使用了 WebView 方法吗?

更新:尝试使用 curl:

curl -u me@test.com:mypassword http://api.test.com/userinfo/user?uid=53461

它可以很好地拉动页面。我尝试了主机参数的每种组合,但 api 的所有者不知道我所说的“领域”是什么意思(我也不知道) - 我可以给他们什么信息来帮助他们?

谢谢

最佳答案

另一种选择是使用 WebViewClient;

webview.setWebViewClient(new MyWebViewClient ());

private class MyWebViewClient extends WebViewClient {
@Override
public void onReceivedHttpAuthRequest(WebView view,
HttpAuthHandler handler, String host, String realm) {

handler.proceed("me@test.com", "mypassword");

}
}

关于android - 使用 WebView 设置HttpAuthUsernamePassword?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2585055/

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