我正在尝试解析托管在我的 Google Drive 上的 json 文件。我正在使用以下代码:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSURL* url = [NSURL URLWithString:@"https://docs.google.com/file/d/0B3CRs9y562F3a0VXTXNaekNiSXM/edit?usp=sharing"];
NSURLRequest* request = [NSURLRequest requestWithURL:url];
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
if (!error) {
NSDictionary* jsonDictionary = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"jsonDictionary \n%@", jsonDictionary);
}
}];
}
我检查了网址,发现它要么是代码,要么是无法从 Google Drive 访问。如果代码不好,我看不到它在哪里。如果无法从 Google Drive 解析 .json 文件,我可以在哪里托管可以访问此内容的权限?它必须在我自己的域上吗?我在 Google Code 上进行了托管,但绝对不像我需要的版本控制,等等。