SlackConnector initiates an open connection between you and the Slack api servers. SlackConnector uses web-sockets to allow real-time messages to be received and handled within your application.


Keywords
API, MargieBot, Slack, SlackApi, SlackConnector, bot, noobot, slackbot
License
MIT
Install
Install-Package SlackConnector -Version 5.1.11

Documentation

SlackConnector

Build status Test status Nuget.org

SlackConnector is a C# client to initiate and manage an open connection between you and the Slack servers. SlackConnector uses web-sockets to allow real-time messages to be received and handled within your application.

History

This library was originally extracted MargieBot and has iterated on it's own to become testable and progress without being coupled to any one implementation. This library has been built for noobot, however it can easily be used in any project due to it's decoupling.

Installation

Install-Package SlackConnector

Usage

ISlackConnector connector = new SlackConnector.SlackConnector();
ISlackConnection connection = await connector.Connect(botAccessToken);
connection.OnMessageReceived += MessageReceived;
connection.OnDisconnect += Disconnected;

Features

  • Async by default
  • Easy setup
  • Real-time communication
  • Unit tested