0
我從谷歌地方搜索網址獲取結果,如果我搜索「紐約」,一切工作正常。但是如果我給「紐約」,結果json是不同的,我不能把它在NSData。 這是我使用的網址:我使用下面的代碼來獲取數據無法從NSURL獲取數據
https://maps.googleapis.com/maps/api/place/textsearch/json?query=New紐約&傳感器=真&鍵= MY_KEY
:
NSURL *googleURL = [NSURL URLWithString:url]; //url is above url
NSURLResponse *response;
NSData *data;
NSError *error;
data = [NSURLConnection sendSynchronousRequest: [NSURLRequest
requestWithURL: googleURL] returningResponse: &response error: &error];
NSLog(@"data %@",data); // but I am getting null here
如何克服呢?在此先感謝