gpt4 book ai didi

objective-c - NSURLRequest - 请求超过 300 个字符的 url

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

我想执行以下请求

NSString* testString = @"http://www.abcd.com?xxxxxxxxxxxxxxxxxx........." (The length of testString is more than 400 characters)
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:testString]];

如果我尝试上面的代码片段,urlRequest 将作为 NULL 值发送。是否有可能压缩字符串或 URL???

最佳答案

传递给 URL 的 NSString 长度没有限制,但有特殊字符可以做到这一点,例如空格、重音符号等。

尝试一下:

[NSURL URLWithString:[testString stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]];
// if it`s using utf8

更多详情请参见 this Q&A

关于objective-c - NSURLRequest - 请求超过 300 个字符的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8193673/

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