gpt4 book ai didi

iphone - 带有 UIWebView 的 ASIHTTPRequest

转载 作者:行者123 更新时间:2023-11-29 04:58:45 24 4
gpt4 key购买 nike

我需要连接到 protected 站点并尝试使用 ASIHTTPRequest

这是我的代码:

url = [NSURL URLWithString:@"http://myurl/page.aspx"];

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setUsername:username];
[request setPassword:password];
[request setDomain:domain];
[request startSynchronous];
NSError *error = [request error];
if (!error) {
[webView loadHTMLString:[request responseString] baseURL:[request url]];
}

当我使用 NSLog 查看 [request responseString] 时,我得到了正确的 HTML,但结果是一个空白的白色 webview。从小告密者显示的传出请求警告中,我看到了初始请求和一个前往外部资源的请求。

到目前为止,我的猜测是初始请求正确使用 ASIHTTPRequest 的身份验证并获取页面,但 uiwebview 将尝试加载包含的 .js 文件,并且由于 uiwebview 未进行身份验证,因此它根本不会渲染页面...

有人知道如何解决我的问题吗?

最佳答案

你试过吗ASIWebPageRequest ?我的猜测是您在该页面中有未下载的资源,例如 http://myurl/image.jpg

关于iphone - 带有 UIWebView 的 ASIHTTPRequest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7431727/

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