actix-web-middleware-slack

actix-web middleware for Verifying requests from Slack

CI

Installation

[dependencies] actix-web-middleware-slack = <version>

Quick Start

```rust use actixweb::{App, HttpServer, web}; use actixwebmiddlewareslack::Slack;

[tokio::main]

async fn main() { let server = HttpServer::new(move || { // https://api.slack.com/authentication/verifying-requests-from-slack#verifying-requests-from-slack-using-signing-secrets_app-management-updates let signingsecret = "Signing Secret"; App::new() .wrap(Slack::new(signing_secret)) }).bind(("0.0.0.0", 8090)).unwrap().run(); server.await; } ```

License

This project is licensed under the MIT license.

Contributing

Contributions are welcome. 1. Fork this repository. 2. Make changes, commit to your fork. 3. Send a pull request with your changes. 4. Confirm the success of CI.