Slack.NetStandard 2.5.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Slack.NetStandard --version 2.5.1
NuGet\Install-Package Slack.NetStandard -Version 2.5.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Slack.NetStandard" Version="2.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Slack.NetStandard --version 2.5.1
#r "nuget: Slack.NetStandard, 2.5.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Slack.NetStandard as a Cake Addin
#addin nuget:?package=Slack.NetStandard&version=2.5.1

// Install Slack.NetStandard as a Cake Tool
#tool nuget:?package=Slack.NetStandard&version=2.5.1

Slack.NetStandard

.NET Core NuGet package that helps with Slack interactions Available at https://www.nuget.org/packages/Slack.NetStandard

Create OAuth URL

using Slack.NetStandard.Auth;

var builder = new OAuthV2Builder("clientId")
{
    State = "stateGoesHere", 
    BotScope = "channels:read"
};
var redirectUri = builder.BuildUri();

Get OAuth Access Token from Code

using Slack.NetStandard.Auth;

var token = await OAuthV2Builder.Exchange(code,clientId,clientSecret);

Verify Incoming Request is from Slack

using Slack.NetStandard;

var verifier = new RequestVerifier(signingSecret);
var verified = Verifier.Verify(request.Headers["X-Slack-Signature"], long.Parse(request.Headers["X-Slack-Request-Timestamp"]), request.Body);

Receive/Respond to a slash command payload

var command = new SlashCommand(payloadText);

var message = new InteractionMessage();
message.Blocks.Add(new Section{Text = new PlainText("Only title is required")});
message.Blocks.Add(new Divider());
message.Send(command.ResponseUrl);

await command.Respond(message);

// or - if it's not from a slash command, any response url can use
await command.Response(responseUrl);

Building & sending a modal

var view = new View
{
    Type = "modal",
    Title = "Create New Story",
    Close = "Cancel",
    Submit = "Submit",
    Blocks = new IMessageBlock[]
    {
       new Section{Text = new PlainText("Only title is required")}
    }
};

var client = new SlackWebApiClient(accessToken);
var response = await client.View.Open(triggerId,view);

Sending a new message to a channel

var request = new PostMessageRequest {Channel = "C123456"};
request.Blocks.Add(new Section{Text = new PlainText("Hi There!")});

var client = new SlackWebApiClient("token");
await client.Chat.Post(request);

Parse Events API Body

using Slack.NetStandard.EventsApi;
using Slack.NetStandard.EventsApi.CallbackEvents;

var eventObject = JsonConvert.DeserializeObject<Event>(input.Body);

if (eventObject is EventCallback callback)
{
    switch(callback.Event)
    {
        case AppHomeOpened appHome:
            break;
        case GroupClose groupClose:
            break;

    }
}
var entities = TextParser.FindEntities("<@W123456|Steven>");
if(entities.First() is UserMention mention)
{
    var userId = mention.UserId //W123456
    var label = mention.Label //Steven
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Slack.NetStandard:

Package Downloads
Slack.NetStandard.AsyncEnumerable

Additional support for Slack.NetStandard apps running Socket Mode

Slack.NetStandard.Endpoint

Small library used to build single Slack endpoints - allowing simpler wiring of Slack apps by examining the full request and deserializing appropriately

Slack.NetStandard.Annotations

Library that uses method attributes to generate a Slack app

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.4.0 48 6/26/2024
9.3.0 23,055 2/28/2024
9.2.0 90 2/28/2024
9.1.1 3,136 1/25/2024
9.1.0 101 1/24/2024
9.0.0 83 1/24/2024
8.2.1 1,289 1/19/2024
8.2.0 936 1/13/2024
8.1.1 16,170 11/14/2023
8.1.0 11,229 10/13/2023
8.0.1 18,789 9/27/2023
8.0.0 822 9/18/2023
7.0.0 10,951 7/25/2023
6.1.0-beta1 961 3/22/2023
6.0.0 41,504 3/22/2023
5.3.0-beta3 3,899 10/26/2022
5.3.0-beta1 136 10/26/2022
5.2.2 49,936 10/26/2022
5.2.0 412 10/26/2022
5.2.0-beta5 213 9/19/2022
5.2.0-beta4 201 8/15/2022
5.2.0-beta3 156 7/28/2022
5.2.0-beta2 164 7/14/2022
5.1.3 4,462 9/19/2022
5.1.2 12,890 7/28/2022
5.1.1 894 7/14/2022
5.1.0-beta1 156 7/13/2022
5.0.0 469 7/13/2022
4.1.0-beta1 158 7/1/2022
4.0.0 6,951 7/1/2022
3.14.0-beta6 149 7/1/2022
3.14.0-beta5 134 6/10/2022
3.14.0-beta4 149 6/7/2022
3.14.0-beta3 154 6/3/2022
3.14.0-beta2 160 6/1/2022
3.14.0-beta1 154 6/1/2022
3.13.5 8,502 7/1/2022
3.13.4 2,376 6/10/2022
3.13.3 931 6/7/2022
3.13.2 609 6/3/2022
3.13.1 607 6/1/2022
3.13.0 469 6/1/2022
3.13.0-beta2 154 5/27/2022
3.13.0-beta1 160 5/13/2022
3.12.1 769 5/27/2022
3.12.0 2,846 5/13/2022
3.12.0-beta2 173 4/13/2022
3.12.0-beta1 154 4/5/2022
3.11.0 4,940 4/5/2022
3.11.0-beta1 159 2/23/2022
3.10.0 7,137 2/23/2022
3.10.0-beta2 158 2/17/2022
3.10.0-beta1 166 2/9/2022
3.9.1 801 2/17/2022
3.9.0 694 2/9/2022
3.9.0-beta1 160 2/1/2022
3.8.0 3,558 2/1/2022
3.8.0-beta3 175 1/15/2022
3.8.0-beta2 164 1/13/2022
3.8.0-beta1 157 1/12/2022
3.7.1 9,421 1/13/2022
3.7.0 462 1/12/2022
3.7.0-beta1 184 12/20/2021
3.6.0 670 12/20/2021
3.6.0-beta1 186 12/14/2021
3.5.0 742 12/14/2021
3.5.0-beta1 3,252 11/25/2021
3.4.0 4,275 11/25/2021
3.4.0-beta1 831 10/10/2021
3.3.0 288,169 10/6/2021
3.2.0 7,474 9/3/2021
3.2.0-beta1 238 8/17/2021
3.1.0 1,186 8/17/2021
3.0.0 2,844 7/19/2021
2.17.0-beta4 298 6/8/2021
2.17.0-beta3 332 5/30/2021
2.17.0-beta2 266 5/22/2021
2.17.0-beta1 202 5/8/2021
2.16.3 84,413 6/8/2021
2.16.2 722 5/30/2021
2.16.1 404 5/22/2021
2.16.0 724 5/8/2021
2.16.0-beta3 214 5/2/2021
2.16.0-beta2 197 4/28/2021
2.16.0-beta1 300 4/7/2021
2.15.2 422 5/2/2021
2.15.1 1,487 4/28/2021
2.15.0 14,023 4/7/2021
2.15.0-beta5 185 4/7/2021
2.15.0-beta3 3,262 3/21/2021
2.15.0-beta2 285 3/18/2021
2.15.0-beta1 198 3/17/2021
2.14.4 332 4/7/2021
2.14.2 2,022 3/21/2021
2.14.1 383 3/18/2021
2.14.0 405 3/17/2021
2.14.0-beta3 198 3/4/2021
2.14.0-beta2 181 3/2/2021
2.14.0-beta1 213 3/2/2021
2.13.2 570 3/4/2021
2.13.1 8,143 3/2/2021
2.13.0 6,125 3/2/2021
2.13.0-beta1 208 2/24/2021
2.12.0 544 2/24/2021
2.12.0-beta1 207 2/22/2021
2.11.0 7,049 2/22/2021
2.10.1 390 2/11/2021
2.10.0 3,952 1/28/2021
2.10.0-beta2 203 1/16/2021
2.10.0-beta1 188 1/15/2021
2.9.2 356 1/27/2021
2.9.1 520 1/16/2021
2.9.0 532 1/15/2021
2.9.0-beta8 241 1/11/2021
2.9.0-beta7 281 12/10/2020
2.9.0-beta6 285 11/30/2020
2.9.0-beta5 282 11/28/2020
2.9.0-beta4 276 11/26/2020
2.9.0-beta3 328 10/20/2020
2.9.0-beta2 264 10/20/2020
2.9.0-beta 302 10/20/2020
2.8.7 7,847 1/11/2021
2.8.6 3,820 12/10/2020
2.8.5 5,500 11/30/2020
2.8.4 502 11/28/2020
2.8.3 474 11/26/2020
2.8.2 1,507 10/20/2020
2.8.1 451 10/20/2020
2.8.0 482 10/20/2020
2.8.0-beta 345 10/17/2020
2.7.0 499 10/17/2020
2.7.0-beta2 240 10/17/2020
2.7.0-beta 303 10/14/2020
2.6.1 394 10/17/2020
2.6.0 453 10/14/2020
2.6.0-beta 368 10/8/2020
2.5.1 572 10/8/2020
2.5.0 560 10/8/2020
2.4.0 531 10/5/2020
2.3.0 1,252 9/17/2020
2.2.1 17,194 9/1/2020
2.2.0 457 8/28/2020
2.1.0 11,493 6/16/2020
2.0.0 634 5/29/2020
1.7.1 492 5/28/2020
1.7.0 669 5/21/2020
1.6.0 482 5/21/2020
1.5.5 502 5/17/2020
1.5.4 461 5/14/2020
1.5.3 501 5/11/2020
1.5.2 523 5/6/2020
1.5.1 518 5/4/2020
1.5.0 481 5/4/2020
1.4.2 484 5/4/2020
1.4.1 470 5/4/2020
1.4.0 500 5/4/2020
1.3.2 502 5/4/2020
1.3.1 572 4/30/2020
1.3.0 473 4/29/2020
1.2.1 494 4/29/2020
1.2.0 489 4/29/2020
1.1.0 475 4/28/2020
1.0.2 456 4/28/2020
1.0.1 486 4/27/2020
1.0.0 544 4/21/2020
0.5.0 531 4/13/2020
0.4.1-alpha8 355 4/12/2020
0.4.1-alpha7 340 4/12/2020
0.4.1-alpha6 349 4/12/2020
0.4.1-alpha4 360 4/12/2020
0.4.1-alpha3 370 4/12/2020
0.4.1-alpha2 316 4/12/2020
0.4.1-alpha1 324 4/11/2020
0.4.0-pre 463 4/5/2020
0.3.2 560 1/3/2020
0.3.1 558 1/3/2020
0.3.0 591 1/2/2020
0.2.2 552 12/23/2019
0.2.1 508 12/23/2019
0.2.1-pre 376 12/19/2019
0.2.0 511 12/20/2019
0.2.0-pre 375 12/18/2019
0.1.1-pre 366 12/17/2019
0.1.0 1,258 12/19/2019
0.1.0-pre 368 12/17/2019

Checkbox and radio button support in message elements