gpt4 book ai didi

c# - 找不到 OAuth2Parameters

转载 作者:行者123 更新时间:2023-11-30 15:39:36 24 4
gpt4 key购买 nike

我正在尝试使用 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 版中。

关于c# - 找不到 OAuth2Parameters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10156197/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com