提问人:Vulkan 提问时间:5/27/2021 最后编辑:Vulkan 更新时间:5/27/2021 访问量:256
URL 中的单个“|”字符会中断 URL 的加载内容
A single "|" character in the URL breaks loading contents of URL
问:
我正在尝试从Wikipedia API加载JSON格式的文章,但出现以下错误:
nil host used in call to allowsSpecificHTTPSCertificateForHost
nil host used in call to allowsAnyHTTPSCertificateForHost:
NSURLConnection finished with error - code -1002
error when trying to fetch from URL (null) - The file couldn’t be opened.
仅当 URL 字符串包含字符“|”时,我才会收到这些错误
id=1 (pageids=1) 的文章的 URL 为:
https://en.wikipedia.org/w/api.php?action=query&format=json&pageids=1&prop=extracts&exintro&explaintext
上面的 URL 不包含字符“I”,因此它工作正常。
在维基百科 API 中,您可以通过用“|”字符分隔其 ID 来请求多篇文章
ids=1、2 和 3 (pageids=1|2|3) 的文章的 URL 为:
https://en.wikipedia.org/w/api.php?action=query&format=json&pageids=1|2|3&prop=extracts&exintro&explaintext
上面的 URL 包含“|”字符,一切都失败了。
我使用我在另一篇文章中找到的这个片段来捕捉错误:
NSError *error = NULL;
NSStringEncoding actualEncoding;
NSString *string = [[NSString alloc] initWithContentsOfURL:url usedEncoding:&actualEncoding error:&error];
if(string)
{
NSLog( @"hey, I actually got a result of %@", string);
if(actualEncoding != NSUTF8StringEncoding)
{
NSLog( @"and look at that, the actual encoding wasn't NSUTF8StringEncoding");
}
} else {
NSLog( @"error when trying to fetch from URL %@ - %@", [url absoluteString], [error localizedDescription]);
}
如果浏览代码,url.absoluteString 在包含“|”字符时返回 null。
答:
1赞
vadian
5/27/2021
#1
管道 () 是一个特殊字符。您必须通过添加适当的百分比编码来对 URL 进行编码。|
这与字符串的文本编码无关。
NSString * string = @"https://en.wikipedia.org/w/api.php?action=query&format=json&pageids=1|2|3&prop=extracts&exintro&explaintext";
NSURL *url = [NSURL URLWithString:[string stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]]];
评论