Вставка комментария в прямую трансляцию чата YouTube с приложением C # form и youtube-v3-api - PullRequest
0 голосов
/ 27 августа 2018

Я пытаюсь вставить комментарий в чат на YouTube, используя приложение на C # в Visual Studio. Я использовал пример добавления плейлиста и изменяю его, чтобы добавить комментарий. Я могу добавить плейлист, поэтому аутентификация работает. Однако мой код для вставки комментария ничего не делает. Я скопировал client_secret.json в более старый проект и включил «копировать каждый раз». Я не понимаю, почему это не работает, так как функции плейлиста работают. Я также использовал API Explorer с LiveChatId, он работает и добавляет комментарий в мой поток, так что я знаю, что у меня есть правильная информация о LiveChatId и фрагментах. Я не понимаю, в чем проблема.

Вот мой код:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Reflection;
using System.Threading;
using Google.Apis.Auth.OAuth2;
using Google.Apis.Services;
using Google.Apis.Upload;
using Google.Apis.Util.Store;
using Google.Apis.YouTube.v3;
using Google.Apis.YouTube.v3.Data;

namespace WindowsFormsApp19
{
class InsertComment
{

    /// <summary>
    /// YouTube Data API v3 sample: create a playlist.
    /// Relies on the Google APIs Client Library for .NET, v1.7.0 or higher.
    /// See https://developers.google.com/api-client-library/dotnet/get_started
    /// </summary>

    public async Task Run()
    {
        UserCredential credential;
        using (var stream = new FileStream("client_secrets.json", FileMode.Open, FileAccess.Read))
        {
            credential = await GoogleWebAuthorizationBroker.AuthorizeAsync(
                GoogleClientSecrets.Load(stream).Secrets,
                // This OAuth 2.0 access scope allows for full read/write access to the
                // authenticated user's account.
                new[] { YouTubeService.Scope.Youtube },
                "user",
                CancellationToken.None,
                new FileDataStore(this.GetType().ToString())
            );
        }

        var youtubeService = new YouTubeService(new BaseClientService.Initializer()
        {
            HttpClientInitializer = credential,
            ApplicationName = this.GetType().ToString()
        }); 


        //PART THAT I ADDED THAT DOESN'T WORK
        var comments = new LiveChatMessage();
        comments.Snippet = new LiveChatMessageSnippet();
        comments.Snippet.LiveChatId = "Cg0KC3BabXB2fjJRRm1Z";
        comments.Snippet.Type = "textMessageEvent";
        comments.Snippet.TextMessageDetails.MessageText = "testing 456";
        comments = await youtubeService.LiveChatMessages.Insert(comments, "snippet").ExecuteAsync();


        //EVERYTHING BELOW HERE WORKS FINE
        //Create a new, private playlist in the authorized user's channel.

        var newPlaylist = new Playlist();
        newPlaylist.Snippet = new PlaylistSnippet();
        newPlaylist.Snippet.Title = "test";
        newPlaylist.Snippet.Description = "testsldkfja;sdlf";
        newPlaylist.Status = new PlaylistStatus();
        newPlaylist.Status.PrivacyStatus = "public";
        newPlaylist = await youtubeService.Playlists.Insert(newPlaylist, "snippet,status").ExecuteAsync();

        //Add a video to the newly created playlist.
        var newPlaylistItem = new PlaylistItem();
        newPlaylistItem.Snippet = new PlaylistItemSnippet();
        newPlaylistItem.Snippet.PlaylistId = newPlaylist.Id;
        newPlaylistItem.Snippet.ResourceId = new ResourceId();
        newPlaylistItem.Snippet.ResourceId.Kind = "youtube#video";
        newPlaylistItem.Snippet.ResourceId.VideoId = "GNRMeaz6QRI";
        newPlaylistItem = await youtubeService.PlaylistItems.Insert(newPlaylistItem, "snippet").ExecuteAsync();

    }
}

}

Это код для класса, который вызывает класс InsertComment.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp19
{
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    private void Form1_Load(object sender, EventArgs e)
    {
    }
    private void textBox1_TextChanged(object sender, EventArgs e)
    {
    }
    private void button2_Click(object sender, EventArgs e)
    {
        try
        { 
            new InsertComment().Run().Wait();
        }
        catch (AggregateException ex)
        {
              foreach (var f in ex.InnerExceptions)
            {
                   Console.WriteLine("Error: " + f.Message);
            }
        }
    }
}

}

1 Ответ

0 голосов
/ 28 августа 2018

У меня все получилось, TextMessageDetails был нулевым, надеюсь, кто-то найдет это полезным ..

LiveChatMessageSnippet mySnippet = new LiveChatMessageSnippet();
LiveChatMessage comments = new LiveChatMessage();
LiveChatTextMessageDetails txtDetails = new LiveChatTextMessageDetails();
txtDetails.MessageText = "yay";
mySnippet.TextMessageDetails = txtDetails;
mySnippet.LiveChatId = "Cg0KC3BabXB2ejfRRm1Z";
mySnippet.Type = "textMessageEvent";
comments.Snippet = mySnippet;
comments = await youtubeService.LiveChatMessages.Insert(comments, "snippet").ExecuteAsync();
...