GithubHelp home page GithubHelp logo

trigataro / csharp-jwt-authentication-sample Goto Github PK

View Code? Open in Web Editor NEW

This project forked from unicodeveloper/csharp-jwt-authentication-sample

0.0 0.0 0.0 24 KB

A C# API and GUI that supports username and password authentication with JWTs

License: MIT License

C# 100.00%

csharp-jwt-authentication-sample's Introduction

Csharp JWT Authentication sample

This is a Csharp Web API that supports username and password authentication with JWTs and has APIs that return user information to the GUI client and vice-versa.

Everything about the Csharp WEB API runs from the Api Directory.

The Desktop C# app runs from the WpfClient Directory.

Available APIs

User APIs

POST /users

You can do a POST to /users to create a new user.

{
  "username": "<username>",

  "firstname": "<firstname>",

  "middlename": "<middlename>",

  "lastname": "<lastname>",

  "age": <age>
}

The body must have:

  • username: The username
  • password: The password

It returns the following:

{

  "id": "<id>",

  "username": "<username>",

  "access_token": "<jwt>"
}

That JWT will contain the id, username and an expires indicating when the token will expire.

POST /users/login

You can do a POST to /users/login to log a user in.

The body must have:

  • username: The username
  • password: The password

It returns the following:

{

  "id": "<id>",

  "username": "<username>",

  "access_token": "<jwt>"
}

That JWT will contain the id, username and an expires indicating when the token will expire.

User API

GET /api/users/{id}

Where id is the Id of a user

It returns the complete user information

{
  "id": "<id>",
  "username": "<username>",

  "firstname": "<firstname>",

  "middlename": "<middlename>",

  "lastname": "<lastname>",

  "age": <age>
}

The JWT must be sent on the Authorization header as follows: Authorization: <jwt>

Running it

Just clone the repository, and launch the solution in Visual Studio. That's it :). This project was built using Visual Studio 2015.

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section.

Author

Prosper Otemuyiwa

License

This project is licensed under the MIT license. See the LICENSE file for more info.

csharp-jwt-authentication-sample's People

Contributors

unicodeveloper 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.