Slack.NetStandard.Endpoint.ApiGatewayLambdaProxy
1.1.2
Slack endpoint for API Gateway Lambda Proxy
Install-Package Slack.NetStandard.Endpoint.ApiGatewayLambdaProxy -Version 1.1.2
dotnet add package Slack.NetStandard.Endpoint.ApiGatewayLambdaProxy --version 1.1.2
<PackageReference Include="Slack.NetStandard.Endpoint.ApiGatewayLambdaProxy" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Slack.NetStandard.Endpoint.ApiGatewayLambdaProxy --version 1.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Slack.NetStandard.Endpoint.ApiGatewayLambdaProxy, 1.1.2"
For F# scripts that support #r syntax, copy this into the source code to reference the package.
Slack.NetStandard.Endpoint.ApiGatewayLambdaProxy
Slack Endpoint for AWS Lambda using API Gateway proxy
Usage - Add it to your lambda
public Function(){
var signingSecret = //retrieve signing secret...
Endpoint = new APIGatewayEndpoint(signingSecret);
}
public Task<APIGatewayProxyResponse> FunctionHandler(APIGatewayProxyRequest input)
{
var slackInfo = Endpoint.Process(input);
if(slackInfo.Command != null && slackInfo.Command.Command == "/weather"){
...
}
}
Slack.NetStandard.Endpoint.ApiGatewayLambdaProxy
Slack Endpoint for AWS Lambda using API Gateway proxy
Usage - Add it to your lambda
public Function(){
var signingSecret = //retrieve signing secret...
Endpoint = new APIGatewayEndpoint(signingSecret);
}
public Task<APIGatewayProxyResponse> FunctionHandler(APIGatewayProxyRequest input)
{
var slackInfo = Endpoint.Process(input);
if(slackInfo.Command != null && slackInfo.Command.Command == "/weather"){
...
}
}
Release Notes
Simplify ApiGatewayEndpoint
Dependencies
-
.NETStandard 2.0
- Amazon.Lambda.APIGatewayEvents (>= 2.4.0)
- Slack.NetStandard.Endpoint (>= 1.2.1)
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.