2014-09-10 124 views
1

我正在用C#與Web應用程序一起工作,用戶將瀏覽視頻文件,Web應用程序將通過YouTube API V3上傳到YouTube。我收到錯誤。請諮詢我在哪裏做錯了?YouTube API V3上傳視頻拋出異常

錯誤:System.ArgumentNullException:值不能爲空。參數名稱:Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(任務任務)上的baseUri,Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(任務任務),Microsoft.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(任務任務),Microsoft.Runtime .CompilerServices.ConfiguredTaskAwaitable1.ConfiguredTaskAwaiter.GetResult()at Google.Apis.Upload.ResumableUpload1.d__e.MoveNext()in c:\ code \ google.com \ google-api-dotnet-client \ default \ Tools \ Google.Apis。 Release \ bin \ Debug \ output \ default \ Src \ GoogleApis \ Apis [Media] \ Upload \ ResumableUpload.cs:line 459

我遵循以下幾點。

  1. 創建了Web應用程序的ClientID,並從API Access頁面下載了client_secrets.json文件。
  2. 使用https://developers.google.com/youtube/v3/docs/videos/insert#examples中提供的.Net示例代碼也提到了相同的代碼https://developers.google.com/youtube/v3/code_samples/dotnet
  3. 我的應用程序已獲得YouTube API的授權。
  4. 上傳視頻文件時,出現錯誤。

我粘貼在我的代碼下方供您參考。

/* * TestFileUploader.aspx/

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestFileUploader.aspx.cs" Inherits="TestFileUploader" Async="true" %> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
</head> 
<body> 
    <form id="qaform" runat="server"> 
     <div> 
      <p> 
       <asp:FileUpload runat="server" ID="FileUpload1" onchange="AddEventChoosePicture(this,'FileUpload1')" 
        Style="width: 100%;" /> 
      </p> 
      <p> 
       <asp:Button ID="submit" runat="server" OnClick="submit_Click" Text="Submit" /> 
      </p> 
     </div> 
    </form> 
</body> 
</html> 

/* * TestFileUploader.aspx.cs/

using System; 
using System.Web; 
using System.IO; 
using QA.credential; 

using Google.Apis.Auth.OAuth2; 
using Google.Apis.YouTube.v3; 
using Google.Apis.Services; 
using Google.Apis.YouTube.v3.Data; 
using Google.Apis.Upload; 

public partial class TestFileUploader : System.Web.UI.Page 
{ 
    protected void Page_Load(object sender, EventArgs e) 
    { 
    } 

    protected void submit_Click(object sender, EventArgs e) 
    { 
     try 
     { 
      if (FileUpload1.HasFile) 
      { 
       String FileUpload1_Ext = System.IO.Path.GetExtension(this.FileUpload1.PostedFile.FileName); 
       UploadVideos(FileUpload1.FileContent, FileUpload1.PostedFile.ContentType); 
      } 
     } 
     catch (Exception ex) 
     { 
      Response.Write(ex.Message); 
     } 

    } 

    private async void UploadVideos(Stream uploadedStream, String contenttype) 
    { 
     try 
     { 
      UserCredential credential; 
      String clientsecretkeypath = HttpContext.Current.Server.MapPath("~/client_secrets.json"); 
      using (var stream = new FileStream(clientsecretkeypath, FileMode.Open, FileAccess.Read)) 
      { 
       credential = await GoogleWebAuthorizationBroker.AuthorizeAsync(
        GoogleClientSecrets.Load(stream).Secrets, 
        new[] { YouTubeService.Scope.YoutubeUpload }, 
        "user", System.Threading.CancellationToken.None); 
      } 

      // Create the service. 
      var youtubeService = new YouTubeService(new BaseClientService.Initializer() 
      { 
       //ApiKey = "AIzaSyAFxuAA4r4pf6VX75zEwCrIh5z4QkzOZ6M", 
       HttpClientInitializer = credential, 
       ApplicationName = PhotoandVideoupload.applicationname 
      }); 

      var video = new Video(); 
      video.Snippet = new VideoSnippet(); 
      video.Snippet.Title = "My Test Movie"; 
      video.Snippet.Description = "My description"; 
      video.Snippet.Tags = new string[] { "Autos" }; 
      video.Snippet.CategoryId = "2"; 
      video.Status = new VideoStatus(); 
      video.Status.PrivacyStatus = "unlisted"; 

      // Using snippet,status below throws 401(UnAuthorized issue). 
      // Using snippet alone throws 404(Bad Request). 
      //In both case, Null Exception throws for parameter baseURI. 
      var videosInsertRequest = youtubeService.Videos.Insert(video, "snippet", uploadedStream, contenttype); 
      videosInsertRequest.ProgressChanged += videosInsertRequest_ProgressChanged; 
      videosInsertRequest.ResponseReceived += videosInsertRequest_ResponseReceived; 

      Google.Apis.Upload.IUploadProgress progress = await videosInsertRequest.UploadAsync(); 

      switch (progress.Status) 
      { 
       case UploadStatus.Uploading: 
        Response.Write(String.Format("{0} bytes sent.", progress.BytesSent)); 
        break; 

       case UploadStatus.Failed: 
        Response.Write(String.Format("{0}<br/>", progress.Exception.Message)); 
        Response.Write(String.Format("{0}<br/>", progress.Exception.StackTrace)); 
        break; 
      } 


      // Also tried to read file from server path instead of uploading via fileupload control. 
      /* 
      using (var fileStream = new FileStream(HttpContext.Current.Server.MapPath("~/1.mp4"), FileMode.Open)) 
      { 
       var videosInsertRequest = youtubeService.Videos.Insert(video, "snippet,status", fileStream, contenttype); 
       videosInsertRequest.ProgressChanged += videosInsertRequest_ProgressChanged; 
       videosInsertRequest.ResponseReceived += videosInsertRequest_ResponseReceived; 

       await videosInsertRequest.UploadAsync(); 
      } 
      */ 

     } 
     catch (Exception ex) 
     { 
      Response.Write(ex.Message + " " + ex.StackTrace); 
     } 
     finally 
     { 
     } 
    } 

    void videosInsertRequest_ProgressChanged(Google.Apis.Upload.IUploadProgress progress) 
    { 
     switch (progress.Status) 
     { 
      case UploadStatus.Uploading: 
       Response.Write(String.Format("{0} bytes sent.", progress.BytesSent)); 
       break; 

      case UploadStatus.Failed: 
       Response.Write(String.Format("{0}<br/>", progress.Exception.Message)); 
       Response.Write(String.Format("{0}<br/>", progress.Exception.StackTrace)); 
       break; 
     } 
    } 

    void videosInsertRequest_ResponseReceived(Video video) 
    { 
     Response.Write(String.Format("Video id '{0}' was successfully uploaded.", video.Id)); 
    } 

} 

請指點我在哪裏做錯了嗎?

感謝,

+0

您可能需要使用Fiddler來捕捉潛在的錯誤。當我有一個參數錯誤時,我遇到了這個錯誤。使用Fiddler記錄IP數據包,我能夠看到名爲bad參數的底層錯誤。 Google API DotNet客戶端[問題480](http://code.google.com/p/google-api-dotnet-client/issues/detail?id=480)要求增強API以返回包含潛在的錯誤。如果您認爲將來可以幫助您進一步調試,請投票選出。 – 2014-09-11 22:15:52

+0

你是否設法通過這個錯誤? – briler 2014-10-06 07:18:06

+0

@Briler:還沒有。如果您發現實際問題,請在此分享。 – DCI 2014-12-11 07:25:17

回答

0

你可以嘗試以下變化:

來源:

var videosInsertRequest = youtubeService.Videos.Insert(video, "snippet", uploadedStream, contenttype); 

要:

var videosInsertRequest = youtubeService.Videos.Insert(video, "snippet,status", uploadedStream, contenttype); 

此外,什麼是contentType中?我使用video/*作爲視頻上傳的內容類型。

狀態碼401錯誤可能是因爲YouTube API尚未獲得授權。檢查您是否已授權YouTube API以獲取您的憑證。轉到Google Developers Console並點擊您的項目名稱。然後點擊左側導航菜單中的「API」。請查看YouTube Data API v3已打開。

+0

當我改變你的建議,我越來越「響應狀態碼不表示成功:401(未授權)。」和「值不能爲空。參數名稱:baseUri」。 – DCI 2014-09-12 06:36:41

+0

我正在閱讀瀏覽文件的內容類型。我試着用.mp4文件。因此,在這種情況下,contenttype將作爲視頻/ mp4傳遞。 我也試圖通過視頻/ *,仍然是同樣的問題。 – DCI 2014-09-12 06:37:50

+0

我修改了我的答案,以解決狀態代碼401錯誤的可能原因。 – 2014-09-12 12:18:34

相關問題