我一直在开发一个网站,让用户将视频上传到共享的YouTube帐户,以便以后访问。经过大量的工作,我已经能够获得一个活动令牌,和可行的刷新令牌。
但是,初始化YouTubeService
对象的代码如下所示:
UserCredential credential;
using (var stream = new FileStream("client_secrets.json", FileMode.Open, FileAccess.Read))
{
credential = await GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
// This OAuth 2.0 access scope allows an application to upload files to the
// authenticated user's YouTube channel, but doesn't allow other types of access.
new[] { YouTubeService.Scope.YoutubeUpload },
"user",
CancellationToken.None
);
}
var youtubeService = new YouTubeService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = Assembly.GetExecutingAssembly().GetName().Name,
});
我已经有了一个代币,我想用我的代币。我使用的是ASP.NET 3.5版,所以无论如何都不能调用async
。
有没有什么方法可以在不使用async
调用的情况下创建YouTubeService
对象,并使用我自己的令牌?有没有一种方法可以在没有授权代理的情况下构建凭据对象?
或者,该应用程序使用YouTube API V2相当长的一段时间,并且有一个接受令牌的表单,并对API V2中与令牌一起生成的YouTube URI执行后期操作。有没有一种方法可以用V3实现这一点?有没有一种方法可以使用Javascript上传视频,可能还有一个我可以在代码中使用的例子?
注意:我最终将我的Framework升级到4.5以访问谷歌库。
要用程序初始化UserCredential对象,您必须构建一个流和TokenResponse。流需要一个作用域(也就是我们正在寻找的凭据权限)。
using Google.Apis.Auth.OAuth2;
using Google.Apis.Auth.OAuth2.Responses;
using Google.Apis.Auth.OAuth2.Flows;
string[] scopes = new string[] {
YouTubeService.Scope.Youtube,
YouTubeService.Scope.YoutubeUpload
};
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow(new GoogleAuthorizationCodeFlow.Initializer
{
ClientSecrets = new ClientSecrets
{
ClientId = XXXXXXXXXX, <- Put your own values here
ClientSecret = XXXXXXXXXX <- Put your own values here
},
Scopes = scopes,
DataStore = new FileDataStore("Store")
});
TokenResponse token = new TokenResponse {
AccessToken = lblActiveToken.Text,
RefreshToken = lblRefreshToken.Text
};
UserCredential credential = new UserCredential(flow, Environment.UserName, token);
希望能有所帮助。
目前,官方的Google.NET客户端库不适用于.NET Framework 3.5(注意:这是一个老问题,自2014年以来,该库一直不支持.NET 3.5。因此,该声明在当时也是有效的。)也就是说,您将无法使用现有的访问令牌为Google.NET客户端库创建服务。此外,使用任何.NET Framework都不可能使用访问令牌创建它,您需要创建自己的Idatastore
实现并加载刷新令牌。
支持的平台
- .NET Framework 4.5和4.6
- .NET Core(通过netstandard1.3支持)
- Windows 8应用程序
- Windows Phone 8和8.1
- 可移植类库
也就是说,你必须从头开始自己编写代码。我已经做了,而且是可行的。
身份验证:
你已经说过你已经有了刷新令牌,所以我不讨论如何创建它。以下是HTTP POST调用
刷新访问令牌请求:
https://accounts.google.com/o/oauth2/token
client_id={ClientId}.apps.googleusercontent.com&client_secret={ClientSecret}&refresh_token=1/ffYmfI0sjR54Ft9oupubLzrJhD1hZS5tWQcyAvNECCA&grant_type=refresh_token
刷新访问令牌响应:
{ "access_token" : "ya29.1.AADtN_XK16As2ZHlScqOxGtntIlevNcasMSPwGiE3pe5ANZfrmJTcsI3ZtAjv4sDrPDRnQ", "token_type" : "Bearer", "expires_in" : 3600 }
您对YouTube API的调用可以将访问令牌添加为授权承载令牌,也可以将其添加到任何请求的末尾
https://www.googleapis.com/youtube/v3/search?access_token={token here}
我有一篇关于所有对身份验证服务器Google 3脚Oauth2流的调用的完整帖子。我只是在所有的通话中使用普通的webRequets。
// Create a request for the URL.
WebRequest request = WebRequest.Create("http://www.contoso.com/default.html");
// If required by the server, set the credentials.
request.Credentials = CredentialCache.DefaultCredentials;
// Get the response.
WebResponse response = request.GetResponse();
// Display the status.
Console.WriteLine (((HttpWebResponse)response).StatusDescription);
// Get the stream containing content returned by the server.
Stream dataStream = response.GetResponseStream();
// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader(dataStream);
// Read the content.
string responseFromServer = reader.ReadToEnd();
// Display the content.
Console.WriteLine(responseFromServer);
// Clean up the streams and the response.
reader.Close();
response.Close();
升级.NET 4+
如果你能使用库升级到最新版本的.NET,那就容易多了。这是来自谷歌官方文档Web应用程序ASP.NET。我在github帐户上有一些额外的示例代码,介绍如何使用Google Drive API。谷歌网络对YouTube数据v3。
using System;
using System.Web.Mvc;
using Google.Apis.Auth.OAuth2;
using Google.Apis.Auth.OAuth2.Flows;
using Google.Apis.Auth.OAuth2.Mvc;
using Google.Apis.Drive.v2;
using Google.Apis.Util.Store;
namespace Google.Apis.Sample.MVC4
{
public class AppFlowMetadata : FlowMetadata
{
private static readonly IAuthorizationCodeFlow flow =
new GoogleAuthorizationCodeFlow(new GoogleAuthorizationCodeFlow.Initializer
{
ClientSecrets = new ClientSecrets
{
ClientId = "PUT_CLIENT_ID_HERE",
ClientSecret = "PUT_CLIENT_SECRET_HERE"
},
Scopes = new[] { DriveService.Scope.Drive },
DataStore = new FileDataStore("Drive.Api.Auth.Store")
});
public override string GetUserId(Controller controller)
{
// In this sample we use the session to store the user identifiers.
// That's not the best practice, because you should have a logic to identify
// a user. You might want to use "OpenID Connect".
// You can read more about the protocol in the following link:
// https://developers.google.com/accounts/docs/OAuth2Login.
var user = controller.Session["user"];
if (user == null)
{
user = Guid.NewGuid();
controller.Session["user"] = user;
}
return user.ToString();
}
public override IAuthorizationCodeFlow Flow
{
get { return flow; }
}
}
}
最重要的提示YouTube不支持服务帐户,你必须坚持使用Oauth2。只要您对代码进行了一次身份验证,它就应该继续工作。