ジオコーディングの URL リクエストを次のように送信する PHP アプリがあります。
http://nominatim.openstreetmap.org/reverse?format=xml&lat=33&lon=34&addressdetails=1
ブラウザーにコピーすると、XML 応答が返されます。PHP ファイルから同じ URL を送信すると、次のような応答が返されます。
<html><head><title>Bandwidth limit exceeded</title></head><body><h1>Bandwidth limit exceeded</h1><p>You have been temporarily blocked because you have been overusing OSM's geocoding service or because you have not provided sufficient identification of your application. This block will be automatically lifted after a while. Please take the time and adapt your scripts to reduce the number of requests and make sure that you send a valid UserAgent or Referer.</p><p>For more information, consult the <a href="http://wiki.openstreetmap.org/wiki/Nominatim_usage_policy">usage policy</a> for the OSM Nominatim server.</body></head>
その要求は 5 分ごとに送信されますが、これは 1 秒に違反していません。制限を要求します。そのエラーメッセージが表示されないようにするにはどうすればよいですか?
// Send to nomintaim server reverse geocoding request
$url = "http://nominatim.openstreetmap.org/reverse?format=xml&lat=" . $loc['lat'] . "&lon=" . $loc['lng']. "&addressdetails=1";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
$result = curl_exec($ch);
curl_close($ch);