c#WebRequest to Google API Bad Request

时间:2012-06-14 16:19:40

标签: c# google-api

当我运行此代码来调用Google API时,我得到的是“错误请求”错误,但我不知道我哪里出错了。

从Google上的授权页面返回代码没有任何问题,当代码到达下面的部分失败时。请有人告诉我我在哪里出错?

我知道有这样的库,但我正在尝试理解如何将RESTful方式作为一种学习练习。

谢谢

   var code = Request.QueryString["code"];

    var accessToken = string.Empty;
    var req0 = WebRequest.Create("https://accounts.google.com/o/oauth2/token");
    req0.Method = "POST";
string postData = string.Format("code={0}&client_id={1}&client_secret={2}&redirect_uri=        {3}&grant_type=authorization_code",
code, //the code i got back
"xxxx.apps.googleusercontent.com",
"xxx",
Url.Encode("http://localhost/home/callback")
); //my return URI

byte[] byteArray = Encoding.UTF8.GetBytes(postData);
req0.ContentType = "application/x-www-form-urlencoded";
req0.ContentLength = byteArray.Length;
using (Stream dataStream = req0.GetRequestStream())
{
dataStream.Write(byteArray, 0, byteArray.Length);
dataStream.Close();
        }
        try
        {
            using (WebResponse response = req0.GetResponse())
            {
                using (var dataStream = response.GetResponseStream())
                {
                    using (StreamReader reader = new StreamReader(dataStream))
                    {
                        string responseFromServer = reader.ReadToEnd();
                        var ser = new JavaScriptSerializer();
                        accessToken = ser.DeserializeObject(responseFromServer).ToString();
                    }
                }
            }
        }
        catch (WebException wex) 
        { 
            Debug.WriteLine(wex.ToString());
        }
        catch (Exception ex) 
        {
            Debug.WriteLine(ex.ToString());

        }

1 个答案:

答案 0 :(得分:0)

对于您在API控制台中为客户端ID返回URI输入的内容,以及您在代码中输入的内容来调用它,Google API非常挑剔。

我错过了正面斜线。这就是全部了。获得的经验......

感谢Jon和Sandeep的帮助,通过比较网络流量和我应该发送的内容,指出了我正确的方向。