gpt4 book ai didi

iphone - NSURL 错误过多

转载 作者:可可西里 更新时间:2023-11-01 06:16:33 25 4
gpt4 key购买 nike

我遇到了错误 1000(URL 错误过多),我不确定发生了什么。示例 URL 大致如下所示(它已经编码了我从 Bad URL when requesting with NSURL 中读取的百分比):

http://test1.test.com/X?op=find&base=tpl01&request=%28%28WCL=DVD%20or%20WCL=VCD%20or%20WCL=SDVD%29%20AND%20%28WFM=VM%29%20AND%20%28WIS=19%20or%20WIS=01%29%29 

但是,我仍然不确定为什么它不起作用。

如果需要(在百分比编码之前):

http://test1.test.com/X?op=find&bas=tp01&request=((WCL=DVD or WCL=VCD or WCL=SDVD) AND (WFM=VM) AND (WIS=19 or WIS=01))

在我的 Internet 连接中,我已经记录了 request.URL,但它似乎是空的。我确实插入了我的网址。将以任何方式感谢您的帮助。

最佳答案

编辑: 编码类型 stringByAddingPercentEscapesUsingEncoding 可能会解决您的问题

NSString* urlText = @"http://test1.test.com/X?op=find&bas=tp01&request=((WCL=DVD or WCL=VCD or WCL=SDVD) AND (WFM=VM) AND (WIS=19 or WIS=01))";
urlText = [urlText stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url = [NSURL URLWithString: urlText];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
timeoutInterval:10];

[request setHTTPMethod: @"GET"];

NSError *requestError;
NSURLResponse *urlResponse = nil;


NSData *response1 = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&requestError];

希望对你有帮助

关于iphone - NSURL 错误过多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12208805/

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