加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – google api oauth访问令牌检索 – 400个错误请求

发布时间:2020-12-15 21:43:01 所属栏目:百科 来源:网络整理
导读:我正在尝试检索oauth访问令牌以在asp.net mvc中调用某些google apis,并且我为操作编写了以下代码: public ActionResult GetOAuthToken() { String url = "https://accounts.google.com/o/oauth2/token"; // Create a request using a URL that can receive
我正在尝试检索oauth访问令牌以在asp.net mvc中调用某些google apis,并且我为操作编写了以下代码:

public ActionResult GetOAuthToken()
        {

        String url = "https://accounts.google.com/o/oauth2/token";

        // Create a request using a URL that can receive a post. 
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
        // Set the Method property of the request to POST.
        request.Method = "POST";
        request.Host = "accounts.google.com";
        // Create POST data and convert it to a byte array.
        string postData = String.Format("code={0}&client_id={1}&client_secret={2}&redirect_uri={3}&grant_type=authorization_code",Request.QueryString["code"].ToString(),OAuthConfig.client_id,OAuthConfig.client_secret,OAuthConfig.token_redirect_uri);
        ASCIIEncoding encoding = new ASCIIEncoding();
        byte[] byteArray = encoding.GetBytes(postData);
        // Set the ContentType property of the WebRequest.
        request.ContentType = "application/x-www-form-urlencoded";
        // Set the ContentLength property of the WebRequest.
        request.ContentLength = byteArray.Length;
        // Get the request stream.
        Stream dataStream = request.GetRequestStream();

        // Write the data to the request stream.
        dataStream.Write(byteArray,byteArray.Length);
        // Close the Stream object.
        dataStream.Close();
        // Get the response.
        WebResponse response = request.GetResponse();

        // SOME CODE TO PROCESS THE RESPONSE

        Response.Redirect("/Home");
        return View();
        }

OAuthConfig只是一个包含客户端ID,客户端密钥等的类.

我一直得到’远程服务器返回错误:(400)错误请求.在request.GetResponse()行.我哪里错了?

解决方法

谷歌确实提供了一个更高级别的库来处理它的服务,它处理网址的格式,我发现它可以更容易地使用它们的api.见 http://code.google.com/p/google-api-dotnet-client/

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读