iOS アプリケーションに Google Places API を使用しています。API コンソールから Google Maps Android API v2、Places API を有効にしました。API アクセス セクションで iOS キーを作成します。次のコードを使用して、Google Places API にリクエストを送信しています。
NSString *finalString = [NSString stringWithFormat:@"https://maps.googleapis.com/maps/api/place/search/json?location=%f,%f&radius=5000&keyword=restaurants&sensor=false&key=PASTE_GENERATED_KEY_HERE",_location.coordinate.latitude,_location.coordinate.longitude];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:finalString]];
しかし、私はJSON応答で次のようになっています
{
"debug_info" = (
);
"html_attributions" = (
);
results = (
);
status = "REQUEST_DENIED";
}
同様に機能していない新しいキーを再生成しました。誰かが私がここで間違っていることを理解してもらえますか?