Git Product home page Git Product logo

rust-jwt-server's Introduction

rust-jwt-server

This is a playground repo where I explore rust based on this tutorial.

It is example JWT authentication using Warp framework.

Usage

There are two users:

email password
user [email protected] 1234
admin [email protected] 4321

Login

curl http://localhost:8000/login -d '{"email": "", "password": ""}' -H 'Content-Type: application/json'

This will response with a token which you need to copy in order to use user endpoint

User Endpoint

First, log in as user

To use this endpoint you need to replace <TOKEN> with token acquired from login endpoint

curl http://localhost:8000/user -H 'Authorization: Bearer <TOKEN>' -H 'Content-Type: application/json'

This should be the response: Hello User 1

and to this command

curl http://localhost:8000/admin -H 'Authorization: Bearer <TOKEN>' -H 'Content-Type: application/json'

This should be the response after using token from logging as user: {"message":"no permission","status":"401 Unauthorized"}

Admin Endpoint

First log in as admin.

To use this endpoint you need to replace <TOKEN> with token acquired from login endpoint

After using admin endpoint, such as this:

curl http://localhost:8000/admin -H 'Authorization: Bearer <TOKEN>' -H 'Content-Type: application/json'

This should be the response: Hello Admin 2

After using user endpoint, such as this:

curl http://localhost:8000/user -H 'Authorization: Bearer <TOKEN>' -H 'Content-Type: application/json'

This should be the response: Hello User 2

rust-jwt-server's People

Contributors

percival33 avatar

Stargazers

Patryk Korczak avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.