A middleware for the Gotham Web
Framework that verifies JSON Web Tokens, returning
StatusCode::UNAUTHORIZED
if a request fails validation.
Create a struct you wish to deserialize into. For our example below,
we've used Claims
:
```rust
extern crate serde_derive;
use futures::future; use gotham::{ helpers::http::response::createemptyresponse, handler::HandlerFuture, pipeline::{ newpipeline, set::{finalizepipelineset, newpipelineset}, }, router::{builder::*, Router}, state::{State, FromState}, }; use gothammiddleware_jwt::{JwtMiddleware, AuthorizationToken}; use gotham::hyper::{Response, StatusCode};
struct Claims { sub: String, exp: usize, }
fn handler(state: State) -> Box
fn router() -> Router {
let pipelines = newpipelineset();
let (pipelines, defaults) = pipelines.add(
newpipeline()
.add(JwtMiddleware::
This middleware crate was originally created by Nicholas Young of Uptime Ventures, Ltd., and is maintained by the Gotham core team.
Licensed under your option of: