Simple actix
middleware that takes a JWT
bearer token from the
authorization
HTTP header and validates it against some JWKS
.
```rust use actix_web::{HttpServer, App};
use actixjwtvalidatormiddleware::{jwtvalidator, initkeyset};
async fn index() -> &'static str { "Welcome!" }
async fn main() -> std::io::Result<()> { let keyset = initkey_set("url-to-your-certification-endpoint") .await .unwrap();
HttpServer::new(move || { App::new() .data(keyset.clone()) .wrap(jwtvalidator()) .route("/index.html", web::get().to(index)) }) .bind("0.0.0.0:8080")? .run() .await } ```
jwk_client
one with Arc
to
make referencing thread-safe