3

以下のコードを使用して長い 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のリクエストをほとんど行っていないのに、なぜそれが起こっているのかわかりません。

お知らせ下さい。

4

2 に答える 2

6

あなたの質問を見ると、それはレート制限を超えたエラーだと思います。次のようにコードを変更すると、エラー応答を取得できます。

try
{
  ........
}
catch (WebException exception)
{
   string responseText;

   using(var reader = new StreamReader(exception.Response.GetResponseStream()))
   {
     responseText = reader.ReadToEnd();
   }
}
catch (Exception ex)
{
  ......
}

レート制限を超えたエラーの場合は、次のようなものが見つかりますresponseText

{
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "rateLimitExceeded",
    "message": "Rate Limit Exceeded"
   }
  ],
  "code": 403,
  "message": "Rate Limit Exceeded"
 }
}
于 2012-10-01T08:04:32.933 に答える