SlackMessenger 1.0.1
.NET Framework 4.5
Requires NuGet 2.8 or higher.
Install-Package SlackMessenger -Version 1.0.1
dotnet add package SlackMessenger --version 1.0.1
<PackageReference Include="SlackMessenger" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SlackMessenger --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SlackMessenger, 1.0.1"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install SlackMessenger as a Cake Addin
#addin nuget:?package=SlackMessenger&version=1.0.1
// Install SlackMessenger as a Cake Tool
#tool nuget:?package=SlackMessenger&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SlackMessenger
A .NET library to enable you to send bot messages in slack, by posting messages to Slack's incoming WebHook Urls
NuGet
Install via NuGet: Install-Package SlackMessenger
Or click here to go to the NuGet package landing page
Registering for your WebHook Url with Slack
Click here to set up an incoming WebHook
- Sign in to Slack
- Choose a channel to post to
- Then click on the green button Add Incoming WebHooks integration
- You will be given a WebHook Url. Keep this private. Use it when you set up the SlackClient. See example below.
// Usage example
// This will send a message to the slack channel with the message, username and emoji of your choice
using SlackMessenger;
var client = new SlackClient("https://hooks.slack.com/services/Your/WebHook/Url");
// send message by emoji icon
var msg = new Message($"Test Message for slack channel", "channelName", "username", ":emoji:");
// send message by icon from an url
var msg = new Message($"Test Message for slack channel", "channelName", "username", "http://test.com/icon.png");
client.Send(msg);
Product | Versions |
---|---|
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.1 | 3,538 | 5/6/2018 |
First release