c# - 使用 ASP.NET C# 上传到 YouTube - 避免出现 "Google login"屏幕

标签 c# asp.net video upload youtube-api

我正在创建一个将视频上传到 YouTube channel 的 ASP.NET C# 应用程序。 *我已经(尽我所能)通读了

上的文档

The YouTube API Documentation

我已经能够使用提供的示例代码成功实现将视频上传到 YouTube channel 的两个示例。

例如使用direct方法(只附重要代码):

<!-- eja: import the google libraries -->
 <%@ Import Namespace="Google.GData.Client" %>
 <%@ Import Namespace="Google.GData.Extensions" %>
<%@ Import Namespace="Google.GData.YouTube" %>
<%@ Import Namespace="System.Net" %>

<!-- some more code -->
 <%
    // specify where to go to once authenticated
    Uri targetUri = new Uri(Request.Url, "VideoManager.aspx");

    // hide the link to authenticate for now.
    GotoAuthSubLink.Visible = false;
    // GotoAuthSubLink.Visible = true;

    // look for a session var storing the auth token. if it's not empty
    if (Session["token"] != null)
    {
        // go to the VideoManager link
        Response.Redirect(targetUri.ToString());
    }
    else if (Request.QueryString["token"] != null)
    {
        // if we have the auth key in the URL, grab it from there instead
        String token = Request.QueryString["token"];
        // set the session equal to AuthSubUtil's calling the exchangeForSessionToken method
        // returns the token and convert it to a string 
        Session["token"] = AuthSubUtil.exchangeForSessionToken(token, null).ToString();
        Response.Redirect(targetUri.ToString(), true);
    }
    else 
    {
        //no auth token, display the link and create the token by loading the google
        // auth page

        String authLink = AuthSubUtil.getRequestUrl(Request.Url.ToString(), "http://gdata.youtube.com", false, true);
        GotoAuthSubLink.Text = "Login to your Google Account";
        GotoAuthSubLink.Visible = true;
        GotoAuthSubLink.NavigateUrl = AuthSubUtil.getRequestUrl(Request.Url.ToString(),"http://gdata.youtube.com",false,true);

    }

 <asp:HyperLink ID="GotoAuthSubLink" runat="server"/>

这是第一页...它加载了 google 身份验证屏幕。 (请参阅附加图片的链接,这是安全的,我刚刚在 stackOverflow 上设置了一个新帐户,还不能上传图片)。

Twitpic image of google authentication screen

然后它会导致一个带有上传机制的页面...上传工作我并不担心,但这里是代码片段供引用。

       // create an instance ot the YouTubeService class. passing the application name and my DEV KEY
        YouTubeService service = new YouTubeService(authFactory.ApplicationName, **API_KEY**);

        // retrieve the current session token as a string if any
        authFactory.Token = HttpContext.Current.Session["token"] as string;
        // incorporate the information into our service
        service.RequestFactory = authFactory;

        try
        {
            // a YouTubeEntry object is single entity within a videoFeed object. It generally contains info
            // about the video. when uploading, we will assign the values that we received to the feed.

            YouTubeEntry entry = new YouTubeEntry();

            // aggregate all the initial descriptor information
            entry.Media = new Google.GData.YouTube.MediaGroup();
            entry.Media.Description = new MediaDescription(this.Description.Text);
            entry.Media.Title = new MediaTitle(this.Title.Text);
            entry.Media.Keywords = new MediaKeywords(this.Keyword.Text);

            // process  entry.Media.Categories to assign the category
            MediaCategory category = new MediaCategory(this.Category.SelectedValue);
            category.Attributes["scheme"] = YouTubeService.DefaultCategory;
            entry.Media.Categories.Add(category);

            // prepare the token used for uploading
            FormUploadToken token = service.FormUpload(entry);
            HttpContext.Current.Session["form_upload_url"] = token.Url;
            HttpContext.Current.Session["form_upload_token"] = token.Token;

            // construct the URL
            string page = "http://" + Request.ServerVariables["SERVER_NAME"];

            if (Request.ServerVariables["SERVER_PORT"] != "80")
            {
                page += ":" + Request.ServerVariables["SERVER_PORT"];
            }
            page += Request.ServerVariables["URL"];

            HttpContext.Current.Session["form_upload_redirect"] = page;
            Response.Redirect("UploadVideo.aspx");

UploadVideo.aspx 页面是实际的上传表单,它可以正常工作,所以我不关心这一点。

替代方法不是推荐的方法,因为它本质上是同步的,但它确实避免了登录屏幕,因为它允许我们传递凭据以进行身份​​验证(它作为网络应用程序工作)......下面附上主要代码.

<%
    GAuthSubRequestFactory authFactory = new GAuthSubRequestFactory(ServiceNames.YouTube, "TesterApp");
     // Response.Write("serviceNames.youtube=" + ServiceNames.YouTube + "<br />");
    YouTubeRequestSettings s = new YouTubeRequestSettings(authFactory.ApplicationName, **your API KEY**,**Your email account as a username**,**your password**);

YouTubeRequest request = new YouTubeRequest(s);
Video newVideo = new Video();
newVideo.Title = "test at 4:40";
newVideo.Tags.Add(new MediaCategory("Games", YouTubeNameTable.CategorySchema));
newVideo.Keywords = "cars, funny";
newVideo.Description = "My description";
newVideo.YouTubeEntry.Private = false;
// newVideo.Tags.Add(new MediaCategory("mydevtag, anotherdevtag", YouTubeNameTable.DeveloperTagSchema));

// newVideo.YouTubeEntry.Location = new GeoRssWhere(37, -122);
// alternatively, you could just specify a descriptive string
newVideo.YouTubeEntry.setYouTubeExtension("location", "Somewhere,Someplace");

newVideo.YouTubeEntry.MediaSource = new MediaFileSource("C:\\IMG_1672.MOV",
  "video/quicktime");
Video createdVideo = request.Upload(newVideo);
Response.Write("This will print out once the file is uploaded...indicates that the code is <i>synchronous</i>. The cursor spins around until done. go get a coffee then check the YouTube Channel");

 %>

所以基本上我要问的问题是 - 是否有一种方法可以将视频上传到 ASP.NET C# 代码中的 YouTube channel a) 对于 Web 应用程序 b) 我可以通过代码将凭据传递给 c ) 绕过上面看到的谷歌身份验证屏幕和 d) 不使用 OAuth 和 openID 和证书等?

该应用程序仅用于短期事件(仅限 11 月),我很高兴使用已弃用的 authSubUtil 和开发 key ,无需担心 oAuth 2.x 或开放 ID(因为 authsubutil 无论如何都会在 2015 年弃用).

感谢任何帮助。

谢谢

爱德华

最佳答案

您最好使用 ClientLogin 身份验证,您可以在其中存储用户帐户的用户名和密码,然后使用 DirectUpload。

直接上传:https://developers.google.com/youtube/2.0/developers_guide_dotnet#Direct_Upload

客户端登录:https://developers.google.com/youtube/2.0/developers_guide_protocol_clientlogin#ClientLogin_Authentication

请注意客户端登录已被弃用,他们希望您使用 OAuth,但是如果您快速使用它应该没问题!

关于c# - 使用 ASP.NET C# 上传到 YouTube - 避免出现 "Google login"屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12271612/

相关文章:

c# - ASP.NET MVC 3.0 图表助手显示图例

c# - MVC - 给定路由名称,我可以获得默认操作名称和 Controller 名称吗?

c# - 如果 MvC View 中不存在源,如何显示默认图像

android - 视频完成时从 surfaceview 清除视频帧

python - 如何映射使用 ffmpeg 提取的帧和视频的字幕? (帧精度问题)

c# - 如何对类列表进行排序

c# - 如何将数据插入到 blob C#/mysql/uwp

c# - 在设计时更改自定义控件的默认 Text 属性

c# - 如果我所有的 .Net Controllers/Action 都需要 Authorize Attr,为什么没有一个属性只使用那些不需要的?

python - 如何使用 Python 和 Gstreamer 创建视频缩略图