ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

找不到OAuth2Parameters

2019-11-01 12:04:36  阅读:197  来源: 互联网

标签:google-docs google-docs-api c net


我正在尝试使用OAuth 2.0来授权google docs API,
根据谷歌在https://developers.google.com/google-apps/documents-list/#authorizing_requests_with_oauth_20给出的例子
他们正在使用这段代码:

// OAuth2Parameters holds all the parameters related to OAuth 2.0.
      OAuth2Parameters parameters = new OAuth2Parameters();

      // Set your OAuth 2.0 Client Id (which you can register at
      // https://code.google.com/apis/console).
      parameters.ClientId = CLIENT_ID;

      // Set your OAuth 2.0 Client Secret, which can be obtained at
      // https://code.google.com/apis/console.
      parameters.ClientSecret = CLIENT_SECRET;

      // Set your Redirect URI, which can be registered at
      // https://code.google.com/apis/console.
      parameters.RedirectUri = REDIRECT_URI;

      ////////////////////////////////////////////////////////////////////////////
      // STEP 3: Get the Authorization URL
      ////////////////////////////////////////////////////////////////////////////

      // Set the scope for this particular service.
      parameters.Scope = SCOPE;

      // Get the authorization url.  The user of your application must visit
      // this url in order to authorize with Google.  If you are building a
      // browser-based application, you can redirect the user to the authorization
      // url.
      string authorizationUrl = OAuthUtil.CreateOAuth2AuthorizationUrl(parameters);

问题是,当我尝试使用此代码时,它说找不到OAuth2Parameters
我同时使用Google.GData.Client; & Google.GData.Documents;

在这里做什么?

解决方法:

要使用OAuth2Parameters类,您必须签出库的源代码并自己构建它:

http://code.google.com/p/google-gdata/source/checkout

该类将包含在即将发布的库2.0版中.

标签:google-docs,google-docs-api,c,net
来源: https://codeday.me/bug/20191101/1983704.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有