gpt4 book ai didi

ios - NSURLRequest:如何处理重定向的帖子?

转载 作者:技术小花猫 更新时间:2023-10-29 11:01:59 24 4
gpt4 key购买 nike

我对 NSURLRequest(和伴奏)实现进行了尝试和测试,这对给定 URL 的 GET 和 POST 非常有效。

但是,我现在想在不更改应用程序使用的 URL 的情况下移动 URL 的目标,因此我打算通过我的 DNS 提供商使用 webhop 重定向。

这适用于 GET 请求,但 POST 只是挂起...没有收到连接响应。

处理重定向的相关 iOS 方法是,

-(NSURLRequest *)connection:(NSURLConnection *)connection
willSendRequest:(NSURLRequest *)request
redirectResponse:(NSURLResponse *)redirectResponse

根据 Apple 的 ( handling redirects) 文档,

如果委托(delegate)未实现 connection:willSendRequest:redirectResponse:,则允许所有规范更改和服务器重定向。

嗯,这不是我的经验,因为不使用这种方法对我不起作用。请求只是挂起而没有响应。

Apple 还建议实现 willSendRequest(请参阅上面链接的 Apple 文档),同样这对我不起作用。我看到调用,但生成的请求只是挂起。

我当前的 willSendRequest 实现如下(见下文)。这遵循重定向,但处理请求时就好像它是 GET 而不是 POST。

我认为问题在于重定向丢失了 HTTP 请求是 POST 的事实(可能还有更多问题,例如也将请求 Body 转发?)。

我不确定我应该在这里做什么。因此,我们将不胜感激任何有关如何正确处理接收重定向的 POST 的建议。谢谢。

-(NSURLRequest *)connection:(NSURLConnection *)connection
willSendRequest:(NSURLRequest *)request
redirectResponse:(NSURLResponse *)redirectResponse
{

NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) redirectResponse;

int statusCode = [httpResponse statusCode];


NSLog (@"HTTP status %d", statusCode);

// http statuscodes between 300 & 400 is a redirect ...
if (httpResponse && statusCode >= 300 && statusCode < 400)
{
NSLog(@"willSendRequest (from %@ to %@)", redirectResponse.URL, request.URL);
}

if (redirectResponse)
{
NSMutableURLRequest *newRequest = [request mutableCopy]; // original request

[newRequest setURL: [request URL]];

NSLog (@"redirected");

return newRequest;
}
else
{
NSLog (@"original");

return request;
}
}

附加信息 1

willSendRequest 收到的 HTTP 代码是 301 - 'Moved Permanently.

使用 allHTTPHeaderFields 提取 header 字段,我看到他最初提交的请求有 header

HTTP header {
"Content-Length" = 244;
"Content-Type" = "application/json";
}

...并且复制/重定向的请求具有 header ,

Redirect HTTP header {
Accept = "*/*";
"Accept-Encoding" = "gzip, deflate";
"Accept-Language" = "en-us";
"Content-Type" = "application/json";
}

...这看起来不像原始请求的副本,甚至也不像超集。

最佳答案

保留您的原始请求,然后提供您自己的 willSendRequest:redirectResponse: 来自定义那个请求,而不是使用 Apple 提供给您的请求。

- (NSURLRequest *)connection: (NSURLConnection *)connection
willSendRequest: (NSURLRequest *)request
redirectResponse: (NSURLResponse *)redirectResponse;
{
if (redirectResponse) {
// The request you initialized the connection with should be kept as
// _originalRequest.
// Instead of trying to merge the pieces of _originalRequest into Cocoa
// touch's proposed redirect request, we make a mutable copy of the
// original request, change the URL to match that of the proposed
// request, and return it as the request to use.
//
NSMutableURLRequest *r = [_originalRequest mutableCopy];
[r setURL: [request URL]];
return r;
} else {
return request;
}
}

通过这样做,您明确地忽略了 HTTP 规范的某些方面:重定向通常应转换为 GET 请求(取决于 HTTP 状态代码)。但实际上,当从 iOS 应用程序发布时,这种行为会更好地为您服务。

另见:

关于ios - NSURLRequest:如何处理重定向的帖子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10783499/

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