OAuth2Parameters找不到 [英] OAuth2Parameters could not be found

查看:163
本文介绍了OAuth2Parameters找不到的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图使用OAuth 2.0授权谷歌文档API, 据谷歌在的https://developers.google.com/google-apps/documents-list/#authorizing_requests_with_oauth_20 他们使用的是一块code:

I'm trying to use OAuth 2.0 for authorizing google docs API, According to the example given by google at https://developers.google.com/google-apps/documents-list/#authorizing_requests_with_oauth_20 they are using the piece of code:

// 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);

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

Problem is that when I try to use this code it says that OAuth2Parameters couldn't be found I'm using both Google.GData.Client; & Google.GData.Documents;

在这里做什么?

推荐答案

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

To use the OAuth2Parameters class you have to checkout the source of the library and build it yourself:

HTTP://$c$c.google.com/ P /谷歌GDATA /源/结帐

这类将包括在库即将到来的2.0版本。

That class will be included in the upcoming version 2.0 of the library.

这篇关于OAuth2Parameters找不到的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆