Slack.NetStandard 5.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Slack.NetStandard --version 5.1.2                
NuGet\Install-Package Slack.NetStandard -Version 5.1.2                
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="5.1.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Slack.NetStandard --version 5.1.2                
#r "nuget: Slack.NetStandard, 5.1.2"                
#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=5.1.2

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

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[RequestVerifier.SignatureHeaderName], long.Parse(request.Headers[RequestVerifier.TimestampHeaderName]), 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 List<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
}

Socket Mode - getting to your payload

if(msg.Contains("envelope_id")) //If there's no envelope ID it's a Hello or Disconnect object
{
   var env = JsonConvert.DeserializeObject<Envelope>(msg);
   switch(env.Payload) {
     case SlashCommand command:
       //logic here
       break;
     case EventCallback evt: 
       //logic here
       break;
     case InteractionPayload payload:
       //logic here
       break;
   }
   var ack = new Acknowledge{EnvelopeId=env.EnvelopeId} //All messages must be acknowledged within a few seconds
   Send(ack);
}

For a .NET 3.1 client that helps with a lot of the Socket Mode plumbing, the SocketSample app is now available at Slack.NetStandard.AsyncEnumerable

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.5.0 3,663 6/28/2024
9.4.0 304 6/26/2024
9.3.0 47,808 2/28/2024
9.2.0 112 2/28/2024
9.1.1 3,420 1/25/2024
9.1.0 122 1/24/2024
9.0.0 106 1/24/2024
8.2.1 1,310 1/19/2024
8.2.0 975 1/13/2024
8.1.1 20,761 11/14/2023
8.1.0 16,887 10/13/2023
8.0.1 24,808 9/27/2023
8.0.0 840 9/18/2023
7.0.0 13,071 7/25/2023
6.1.0-beta1 1,264 3/22/2023
6.0.0 47,434 3/22/2023
5.3.0-beta3 3,959 10/26/2022
5.3.0-beta1 155 10/26/2022
5.2.2 60,597 10/26/2022
5.2.0 428 10/26/2022
5.2.0-beta5 233 9/19/2022
5.2.0-beta4 221 8/15/2022
5.2.0-beta3 160 7/28/2022
5.2.0-beta2 169 7/14/2022
5.1.3 4,593 9/19/2022
5.1.2 13,460 7/28/2022
5.1.1 911 7/14/2022
5.1.0-beta1 171 7/13/2022
5.0.0 495 7/13/2022
4.1.0-beta1 179 7/1/2022
4.0.0 6,968 7/1/2022
3.14.0-beta6 170 7/1/2022
3.14.0-beta5 150 6/10/2022
3.14.0-beta4 163 6/7/2022
3.14.0-beta3 173 6/3/2022
3.14.0-beta2 174 6/1/2022
3.14.0-beta1 168 6/1/2022
3.13.5 8,681 7/1/2022
3.13.4 2,399 6/10/2022
3.13.3 947 6/7/2022
3.13.2 629 6/3/2022
3.13.1 614 6/1/2022
3.13.0 474 6/1/2022
3.13.0-beta2 169 5/27/2022
3.13.0-beta1 174 5/13/2022
3.12.1 783 5/27/2022
3.12.0 2,873 5/13/2022
3.12.0-beta2 188 4/13/2022
3.12.0-beta1 168 4/5/2022
3.11.0 4,971 4/5/2022
3.11.0-beta1 172 2/23/2022
3.10.0 7,320 2/23/2022
3.10.0-beta2 171 2/17/2022
3.10.0-beta1 168 2/9/2022
3.9.1 812 2/17/2022
3.9.0 708 2/9/2022
3.9.0-beta1 173 2/1/2022
3.8.0 3,917 2/1/2022
3.8.0-beta3 177 1/15/2022
3.8.0-beta2 176 1/13/2022
3.8.0-beta1 175 1/12/2022
3.7.1 10,412 1/13/2022
3.7.0 476 1/12/2022
3.7.0-beta1 202 12/20/2021
3.6.0 686 12/20/2021
3.6.0-beta1 203 12/14/2021
3.5.0 758 12/14/2021
3.5.0-beta1 3,264 11/25/2021
3.4.0 4,290 11/25/2021
3.4.0-beta1 844 10/10/2021
3.3.0 292,463 10/6/2021
3.2.0 7,484 9/3/2021
3.2.0-beta1 241 8/17/2021
3.1.0 1,200 8/17/2021
3.0.0 2,871 7/19/2021
2.17.0-beta4 318 6/8/2021
2.17.0-beta3 345 5/30/2021
2.17.0-beta2 285 5/22/2021
2.17.0-beta1 216 5/8/2021
2.16.3 107,137 6/8/2021
2.16.2 737 5/30/2021
2.16.1 424 5/22/2021
2.16.0 739 5/8/2021
2.16.0-beta3 228 5/2/2021
2.16.0-beta2 216 4/28/2021
2.16.0-beta1 302 4/7/2021
2.15.2 435 5/2/2021
2.15.1 1,508 4/28/2021
2.15.0 14,554 4/7/2021
2.15.0-beta5 199 4/7/2021
2.15.0-beta3 3,266 3/21/2021
2.15.0-beta2 299 3/18/2021
2.15.0-beta1 211 3/17/2021
2.14.4 354 4/7/2021
2.14.2 2,039 3/21/2021
2.14.1 404 3/18/2021
2.14.0 420 3/17/2021
2.14.0-beta3 209 3/4/2021
2.14.0-beta2 194 3/2/2021
2.14.0-beta1 223 3/2/2021
2.13.2 583 3/4/2021
2.13.1 8,164 3/2/2021
2.13.0 7,401 3/2/2021
2.13.0-beta1 222 2/24/2021
2.12.0 558 2/24/2021
2.12.0-beta1 221 2/22/2021
2.11.0 7,064 2/22/2021
2.10.1 405 2/11/2021
2.10.0 4,227 1/28/2021
2.10.0-beta2 206 1/16/2021
2.10.0-beta1 205 1/15/2021
2.9.2 371 1/27/2021
2.9.1 535 1/16/2021
2.9.0 556 1/15/2021
2.9.0-beta8 253 1/11/2021
2.9.0-beta7 293 12/10/2020
2.9.0-beta6 305 11/30/2020
2.9.0-beta5 286 11/28/2020
2.9.0-beta4 280 11/26/2020
2.9.0-beta3 340 10/20/2020
2.9.0-beta2 276 10/20/2020
2.9.0-beta 314 10/20/2020
2.8.7 7,862 1/11/2021
2.8.6 4,042 12/10/2020
2.8.5 5,515 11/30/2020
2.8.4 518 11/28/2020
2.8.3 496 11/26/2020
2.8.2 1,530 10/20/2020
2.8.1 466 10/20/2020
2.8.0 502 10/20/2020
2.8.0-beta 357 10/17/2020
2.7.0 513 10/17/2020
2.7.0-beta2 259 10/17/2020
2.7.0-beta 321 10/14/2020
2.6.1 414 10/17/2020
2.6.0 467 10/14/2020
2.6.0-beta 383 10/8/2020
2.5.1 588 10/8/2020
2.5.0 576 10/8/2020
2.4.0 552 10/5/2020
2.3.0 1,267 9/17/2020
2.2.1 17,211 9/1/2020
2.2.0 478 8/28/2020
2.1.0 11,578 6/16/2020
2.0.0 653 5/29/2020
1.7.1 506 5/28/2020
1.7.0 692 5/21/2020
1.6.0 496 5/21/2020
1.5.5 521 5/17/2020
1.5.4 475 5/14/2020
1.5.3 505 5/11/2020
1.5.2 527 5/6/2020
1.5.1 526 5/4/2020
1.5.0 496 5/4/2020
1.4.2 498 5/4/2020
1.4.1 485 5/4/2020
1.4.0 516 5/4/2020
1.3.2 525 5/4/2020
1.3.1 594 4/30/2020
1.3.0 488 4/29/2020
1.2.1 509 4/29/2020
1.2.0 502 4/29/2020
1.1.0 489 4/28/2020
1.0.2 471 4/28/2020
1.0.1 500 4/27/2020
1.0.0 559 4/21/2020
0.5.0 546 4/13/2020
0.4.1-alpha8 368 4/12/2020
0.4.1-alpha7 356 4/12/2020
0.4.1-alpha6 368 4/12/2020
0.4.1-alpha4 385 4/12/2020
0.4.1-alpha3 384 4/12/2020
0.4.1-alpha2 319 4/12/2020
0.4.1-alpha1 337 4/11/2020
0.4.0-pre 482 4/5/2020
0.3.2 574 1/3/2020
0.3.1 578 1/3/2020
0.3.0 611 1/2/2020
0.2.2 569 12/23/2019
0.2.1 522 12/23/2019
0.2.1-pre 396 12/19/2019
0.2.0 528 12/20/2019
0.2.0-pre 390 12/18/2019
0.1.1-pre 380 12/17/2019
0.1.0 1,504 12/19/2019
0.1.0-pre 377 12/17/2019

correct PayloadAction property types