The way i connect the bot is using this: < Twitch Chat Password Generator >
and then <var credentials = new ConnectionCredentials(nombreBot, oauthClave);
BotClient.Initialize(credentials, TwitchChannelName);>
With that i can use <BotClient.OnChatCommandReceived> and then <BotClient.SendMessage()>
But cant use <await TheTwitchAPI.Helix.Chat.SendChatAnnouncementAsync(broadcasterId: TwitchChannelId, moderatorId: BotChannelId, message: “”, color: announceColor, accessToken: CachedOwnerOfChannelAccessToken);> because the token i generate is using Owner Channel Account instead of Bot Account.
I dont know how to generate accessToken with that scope to SendChatAnnouncement WITHOUT login in predetermined browser my Bot Account.
Just an other question because as you can see im noob, Why dont you implement <Client.SendChatAnnouncement()> or maybe is there a way to do it and i dont know it.