UStream API 频道视频列表请求的 AFNetworking 问题

AFNetworking issue with UStream API request for channel's video list

这可能是我忽略的简单问题。我正在尝试使用 AFNetworking 从 uStream 的 API 发出 AFHTTPRequest。我应该会收到一个 JSON 负载响应,其中列出了 uStream 频道上的所有视频。这是我的代码:

NSURL *url = [NSURL URLWithString:@"https://api.ustream.tv/channels/12321320/videos.json"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];

AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
operation.responseSerializer = [AFJSONResponseSerializer serializer];

[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
    NSLog(@"success");

} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    NSLog(@"failed");
}];

[operation start];

在浏览器中测试时一切正常,但在尝试使用 AFNetworking 时出现 NSURLErrorDomain 故障。有人有什么建议吗?

我的代码没问题,但我的 iphone 模拟器有问题。重置内容和设置成功了。感谢 k6sandeep 的帮助。