public void LoginTest() { List<TwitchConstants.Scope> scopes = new List<TwitchConstants.Scope>(); scopes.Add(TwitchConstants.Scope.UserRead); scopes.Add(TwitchConstants.Scope.ChannelCheckSubscription); scopes.Add(TwitchConstants.Scope.ChannelCommercial); scopes.Add(TwitchConstants.Scope.ChannelEditor); scopes.Add(TwitchConstants.Scope.ChannelRead); scopes.Add(TwitchConstants.Scope.ChannelStream); scopes.Add(TwitchConstants.Scope.ChannelSubscriptions); scopes.Add(TwitchConstants.Scope.ChatLogin); scopes.Add(TwitchConstants.Scope.UserBlocksEdit); scopes.Add(TwitchConstants.Scope.UserBlocksRead); scopes.Add(TwitchConstants.Scope.UserFollowsEdit); scopes.Add(TwitchConstants.Scope.UserSubcriptions); Uri loginUri = twixel.Login(scopes); Debug.WriteLine(loginUri.ToString()); Assert.True(true); }
private void GetKeyButton_Click(object sender, EventArgs e) { List <TwitchConstants.Scope> scopes = new List <TwitchConstants.Scope>(); scopes.Add(TwitchConstants.Scope.UserRead); scopes.Add(TwitchConstants.Scope.ChannelCheckSubscription); scopes.Add(TwitchConstants.Scope.ChannelCommercial); scopes.Add(TwitchConstants.Scope.ChannelEditor); scopes.Add(TwitchConstants.Scope.ChannelRead); scopes.Add(TwitchConstants.Scope.ChannelStream); scopes.Add(TwitchConstants.Scope.ChannelSubscriptions); scopes.Add(TwitchConstants.Scope.ChatLogin); scopes.Add(TwitchConstants.Scope.UserBlocksEdit); scopes.Add(TwitchConstants.Scope.UserBlocksRead); scopes.Add(TwitchConstants.Scope.UserFollowsEdit); scopes.Add(TwitchConstants.Scope.UserSubcriptions); Uri uri = twitchClient.Login(scopes); Debug.WriteLine(uri.ToString()); Process.Start(uri.ToString()); }