用于YouTube c# .net视频上传的Google Developer API V3
本文关键字:Google Developer API V3 YouTube net 视频 用于 | 更新日期: 2023-09-27 17:54:48
我一直使用谷歌著名的API V2从我的web应用程序上传YouTube上的视频,因为API已经升级到V3,我无法通过相同的代码上传相同的视频。
我已经尝试了用V3上传视频到YouTube的新应用程序,但是有很多东西是以前有的,但V3中没有
老:来自:Google.Gdata.YouTube.Youtubeservice
YouTubeService service = new YouTubeService(applicationName,developerKey);
service.setUserCredentials(googleEmail, googleEmailPassword);
From: Google.Apis.Youtube.V3.YoutubeService
YouTubeService service = new YouTubeService();` -- its doesn't have the set credentials
我已经通过了YouTube Data API . net代码示例,但它不是很有用,因为它是一个控制台应用程序。
不能再使用登录名和密码了。您需要使用Oauth2对用户进行身份验证。如果是web应用程序或控制台应用程序,代码是相同的。
/// <summary>
/// Authenticate to Google Using Oauth2
/// Documentation https://developers.google.com/accounts/docs/OAuth2
/// </summary>
/// <param name="clientId">From Google Developer console https://console.developers.google.com</param>
/// <param name="clientSecret">From Google Developer console https://console.developers.google.com</param>
/// <param name="userName">A string used to identify a user.</param>
/// <returns></returns>
public static YouTubeService AuthenticateOauth(string clientId, string clientSecret, string userName)
{
string[] scopes = new string[] { YouTubeService.Scope.Youtube, // view and manage your YouTube account
YouTubeService.Scope.YoutubeForceSsl,
YouTubeService.Scope.Youtubepartner,
YouTubeService.Scope.YoutubepartnerChannelAudit,
YouTubeService.Scope.YoutubeReadonly,
YouTubeService.Scope.YoutubeUpload};
try
{
// here is where we Request the user to give us access, or use the Refresh Token that was previously stored in %AppData%
UserCredential credential = GoogleWebAuthorizationBroker.AuthorizeAsync(new ClientSecrets { ClientId = clientId, ClientSecret = clientSecret }
, scopes
, userName
, CancellationToken.None
, new FileDataStore("Daimto.YouTube.Auth.Store")).Result;
YouTubeService service = new YouTubeService(new YouTubeService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = "YouTube Data API Sample",
});
return service;
}
catch (Exception ex)
{
Console.WriteLine(ex.InnerException);
return null;
}
} }
用法:
// Authenticate Oauth2
String CLIENT_ID = "xxxxx-d0vpdthl4ms0soutcrpe036ckqn7rfpn.apps.googleusercontent.com";
String CLIENT_SECRET = "NDmluNfTgUk6wgmy7cFo64RV";
var service = Authentication.AuthenticateOauth(CLIENT_ID, CLIENT_SECRET, "test");
摘自Google-dotnet-Samples/youtube的代码