Snickbrack
Snickbrack
I think you have tried to many times to register yourself either with the same Mail-Address or with the same IP-Address in a too short amount of time. Instagram is...
@matinfathi19 have you had a look into the Code yourself or do you just asking for Copy and Paste?
Is one video for carousel working?
Because with my approach: ``` twitchAPI = new TwitchAPI(); twitchAPI.Settings.ClientId = GetIdentity(fromChannel, toChannel).ClientID; twitchAPI.Settings.AccessToken = GetIdentity(fromChannel, toChannel).TwitchAuthObject.AccessToken; ReSendPubSubTopics(); client.Disconnect(); Thread.Sleep(5000); client.Initialize(credentials, channelInformation.ChannelName); Thread.Sleep(5000); client.Connect(); ``` It somehow seems to connect...
And just as a note: Without calling initialize everytime I change the credentials nothing happens at all at connecting. If I use: ``` Thread.Sleep(5000); client.Connect(); client.JoinChannel(channelInformation.ChannelName); ``` Then it seems...
Okay I would still need an example for this one. But for now as a hotfix I made this one: ``` ReSendPubSubTopics(); client.Disconnect(); Thread.Sleep(5000); if (clientInitialized) { client = null;...