1

次の方法を使用して、Google から JSON を返そうとしています。

NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com.br/maps/api/directions/json?origin=%@&destination=%@&sensor=false", pointOrigem, pointDestino];
    NSURL *url = [NSURL URLWithString:urlString]; 
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    [NSURLConnection connectionWithRequest:request delegate:self];

    NSLog(@"%@", urlString);

ご覧のとおり、すべてが正常であることを確認するために URL をログに記録しました。ここにあります:

http://maps.google.com.br/maps/api/directions/json?origin=rua+cabral+983+Porto+Alegre+RS&destination=travessa+ouvidor+128+Porto+Alegre+RS&sensor=false

誰かが私のコードの何が問題なのか知っていますか? 助けてくれてありがとう!

4

0 に答える 0