来自ASP.NET的oAuth / Gmail - “远程服务器返回错误:(400)错误请求”

时间:2010-08-07 00:06:52

标签: asp.net oauth google-api google-contacts

我一直在敲打这个很长一段时间但现在无济于事。 希望一些SOers能够提供帮助。

  1. 将oAuth.net库用于Gmail Contacts API

  2. 请求似乎格式正确,我已逐步完成请求,无法辨别任何错误。

  3. 尝试检查时间戳是否存在问题 - 这似乎是gmail论坛上的一个常见问题,尝试更改为各个时区,但仍然没有运气。

    公共字符串WebResponseGet(HttpWebRequest webRequest) {     StreamReader responseReader = null;     string responseData =“”;

    try
    {
        //This is where the exception is thrown
        responseReader = new StreamReader(webRequest.GetResponse().GetResponseStream());
        responseData = responseReader.ReadToEnd();
    }
    catch (WebException ex)
    {
        Console.WriteLine(ex);
        throw;
    }
    finally
    {
        webRequest.GetResponse().GetResponseStream().Close();
        responseReader.Close();
        responseReader = null;
    }
    
    return responseData;
    

    }

1 个答案:

答案 0 :(得分:1)

没有真正的回应。把它关掉。