0
  string developerKey = "--------------------------";

    string username = "example@gmail.com";
    string password = "@@@@";//password
    YouTubeRequestSettings settings = new YouTubeRequestSettings("Videoapp", null, developerKey, username, password);
    YouTubeRequest request = new YouTubeRequest(settings);

    Video newvid = new Video();
    Uri asdf = new Uri("http://www.youtube.com/watch?v=07rQlP66f2k");        

    newvid.VideoId = "07rQlP66f2k";
    newvid.Rating = 5;
    //request.Insert(video.RatingsUri, video); should be like this from youtube api developers guide


    request.Insert(asdf, newvid);

私は何を間違っていますか?誰かが私に説明して、それを修正する方法を教えてもらえますか?

4

1 に答える 1

0

最初にビデオを取得する必要があります。その後、次のコードを使用して評価を追加できます。

Rating rating = new Rating();
rating.Value = 1;
newvid.YouTubeEntry.Rating = rating;
request.Service.Insert(new Uri(video.YouTubeEntry.RatingsLink.ToString()), video.YouTubeEntry);

数値の gd:rating は廃止され、yt:rating 要素に置き換えられたことにも注意してください。

http://code.google.com/apis/youtube/2.0/developers_guide_protocol_ratings.html

于 2011-08-02T00:25:48.923 に答える