Beispiel #1
0
        public async void ClientIdTest()
        {
            // This test doesn't pass https://discuss.dev.twitch.tv/t/problem-with-client-id/6528/2
            // You know...cause Twitch sucks
            string responseString = await Twixel.GetWebData(new Uri(new TrexUri(TwitchConstants.baseUrl)), Twixel.APIVersion.v3);

            JObject responseObject = JObject.Parse(responseString);
            bool    identified     = (bool)responseObject["identified"];

            Assert.True(identified);
        }