-
Notifications
You must be signed in to change notification settings - Fork 243
Examples
Inumedia edited this page Jun 20, 2015
·
12 revisions
SlackClient.StartAuth((authStartResponse) =>{
//Here authStartResponse has a field ('users') containing a list of teams you have access to.
SlackClient.AuthSignin(
(authSigninResponse) =>{
//Here, authSigninResponse contains a field 'token' which is your valid authentication token.
},
authStartResponse.users[0].user_id,
authStartResponse.users[1].team_id,
YOUR_PASSWORD_HERE
);
}, YOUR_EMAIL_HERE);
First thing's first, you're going to need one of Slack's auth tokens. Once you do that, connecting is as easy as:
SlackSocketClient client = new SlackSocketClient(YOUR_AUTH_TOKEN);
client.Connect((connected) =>{
//This is called once the client has emitted the RTM start command
}, () =>{
//This is called once the RTM client has connected to the end point
});