以下のコードを使用して長い URL を短縮しています
public static string UrlShorten(string url)
{
string post = "{\"longUrl\": \"" + url + "\"}";
string shortUrl = url;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://www.googleapis.com/urlshortener/v1/url?key=" + ReadConfig("GoogleUrlShortnerApiKey"));
try
{
request.ServicePoint.Expect100Continue = false;
request.Method = "POST";
request.ContentLength = post.Length;
request.ContentType = "application/json";
request.Headers.Add("Cache-Control", "no-cache");
using (Stream requestStream = request.GetRequestStream())
{
byte[] postBuffer = Encoding.ASCII.GetBytes(post);
requestStream.Write(postBuffer, 0, postBuffer.Length);
}
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
using (Stream responseStream = response.GetResponseStream())
{
using (StreamReader responseReader = new StreamReader(responseStream))
{
string json = responseReader.ReadToEnd();
shortUrl = Regex.Match(json, @"""id"": ?""(?<id>.+)""").Groups["id"].Value;
}
}
}
}
catch (Exception ex)
{
// if Google's URL Shortner is down...
Utility.LogSave("UrlShorten", "Google's URL Shortner is down", url, ex.ToString());
//System.Diagnostics.Debug.WriteLine(ex.Message);
//System.Diagnostics.Debug.WriteLine(ex.StackTrace);
}
return shortUrl;
}
多数の URL を短縮するスケジューラを作成しました。そして、ほとんどの場合、例外を下回る
System.Net.WebException: リモート サーバーがエラーを返しました: (403) 許可されていません。System.Net.HttpWebRequest.GetResponse() で
Courtesy Limit が原因でこの例外が発生していると考えていたので、ユーザーごとの制限を 100,000.0 リクエスト/秒/ユーザーずつ増やしましたが、それでも同じ例外が発生しています。
一度にサーバーに2000のリクエストをほとんど行っていないのに、なぜそれが起こっているのかわかりません。
お知らせ下さい。