用于在YouTube C#.net上进行视频上传的Google Developer API V3

时间:2015-06-10 11:46:39

标签: c# youtube google-api youtube-api google-api-dotnet-client

我一直在使用google的知名API V2从我的网络应用程序上传YouTube上的视频,因为API已经升级为V3,我无法通过相同的代码上传相同的内容。

我尝试使用新的应用程序在YouTube上使用V3上传视频,但之前有许多内容,但在V3中没有提供

OLD: 来自:Google.Gdata.YouTube.Youtubeservice

YouTubeService service = new YouTubeService(applicationName,developerKey);
service.setUserCredentials(googleEmail, googleEmailPassword);

新:来自:Google.Apis.Youtube.V3.YoutubeService

YouTubeService service = new YouTubeService();` -- its doesn't have the set credentials

我已经通过了YouTube Data API .NET Code Samples,但它没有多大用处,因为它是一个控制台应用程序。

1 个答案:

答案 0 :(得分:1)

您无法再使用登录名和密码了。您需要使用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

中删除