gpt4 book ai didi

ios - 如何在请求中使用 get 参数处理重定向 url?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:25:28 25 4
gpt4 key购买 nike

我正在尝试从服务器 (aspx) 获取 html 响应。

NSString *urlstr = [[NSString alloc] initWithFormat:@"http://www.someSiteThatRedirectsWithGetParameters.com?parameter1=1&parameter2=2"];

NSURL *url = [ NSURL URLWithString:urlstr];
NSMutableURLRequest *urlRequest = [ NSURLRequest requestWithURL: url];

NSData data = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&response error:&error];

NSURL *lastURL=[response URL];

NSLog(@"Last url %@", lastURL);

我得到的 lastURL 是 www.someSiteThatRedirectsWithGetParameters.com,因此没有得到原始请求 url 的 html 页面。

为什么会这样,我该如何解决?

编辑

这就是我到目前为止所尝试的所有内容:Get the last redirected url in iOS 5? 但我仍然无法实现我想要实现的目标,即:获取在 url 中具有参数的原始 GET 请求(通过重定向)的 html 页面源?

最佳答案

I am getting lastURL as www.someSiteThatRedirectsWithGetParameters.com and therefore not getting the html page for the original requested url.

如果您的请求被重定向,那是因为您要连接的服务器告诉您在您第一次向其发出请求的 URL 上没有页面,您应该改用重定向的 URL。这就是重定向响应的重点。

如果您得到的响应是 HTTP 303 ,新请求将正确地从 POST 更改为 GET。有时这样做是为了避免刷新页面会重新提交原始请求而造成不良后果的情况。在这种情况下,您将请求发布到某个 URL,服务器接受请求但通过将客户端重定向到最终显示服务器响应的不同 URL 来响应。

Why is this so and how can I solve this?

我已经在上面解释了“为什么”。 “解决方案”是接受来自服务器的响应并遵循重定向到包含服务器响应的 URL。

关于ios - 如何在请求中使用 get 参数处理重定向 url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10549766/

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