Git Product home page Git Product logo

auth-server's Introduction

OAuth Server

Basic project that creates a server for authorize and create JWT and then be able to make request securely

Instructions

Download deps

$ go mod download

Run project

$ go run cmd/server/main.go

or

$ make run

Execute unit tests

$ make test

Generate a new token

$ curl --location --request POST 'localhost:9096/oauth/token' \
    --header 'Authorization: Basic YzZjZWNlNTM6ZjEwNWFmZmY=' \
    --header 'Content-Type: application/x-www-form-urlencoded' \
    --data-urlencode 'password=secret' \
    --data-urlencode 'username=user'
{
    "access_token": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjNmNlY2U1MyIsImV4cCI6MTYzNzk2MTMyMSwic3ViIjoiMDAwMDAwIn0.N52iowqI2ysgQiRA3zjJZDRqYC45qW1jffqOVRtqJLM7my0wPbZSmaS4lJPc5TzCwN4SYDk67ciK2YMaqRz46A",
    "refresh_token": "NGNJY2Y4YJETY2MZMY01NJDLLTK0OTETNMQ5YMJIZWJLNGY0",
    "expires_in": 120,
    "scope": "all",
    "token_type": "Bearer"
}

Or

$ curl -X POST 'localhost:9096/oauth/token' \
    -H "Content-Type: application/x-www-form-urlencoded" \
    -d "password=secret&username=user" \
    -u c6cece53:f105afff

{
    "access_token": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjNmNlY2U1MyIsImV4cCI6MTYzNzk2MTMyMSwic3ViIjoiMDAwMDAwIn0.N52iowqI2ysgQiRA3zjJZDRqYC45qW1jffqOVRtqJLM7my0wPbZSmaS4lJPc5TzCwN4SYDk67ciK2YMaqRz46A",
    "refresh_token": "NGNJY2Y4YJETY2MZMY01NJDLLTK0OTETNMQ5YMJIZWJLNGY0",
    "expires_in": 120,
    "scope": "all",
    "token_type": "Bearer"
}

Ping to a protected endpoint

$ curl -X GET 'http://localhost:9096/protected' \
    -H 'Authorization: Bearer eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjNmNlY2U1MyIsImV4cCI6MTYzNzk2MTMyMSwic3ViIjoiMDAwMDAwIn0.N52iowqI2ysgQiRA3zjJZDRqYC45qW1jffqOVRtqJLM7my0wPbZSmaS4lJPc5TzCwN4SYDk67ciK2YMaqRz46A'
Hello, I'm protected

Get user claims

$ curl -X GET 'http://localhost:9096/getClaims' \
    -X 'Authorization: Bearer eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjNmNlY2U1MyIsImV4cCI6MTYzNzk2MTMyMSwic3ViIjoiMDAwMDAwIn0.N52iowqI2ysgQiRA3zjJZDRqYC45qW1jffqOVRtqJLM7my0wPbZSmaS4lJPc5TzCwN4SYDk67ciK2YMaqRz46A'
{
    "audience": "c6cece53",
    "id": "",
    "issuer": "",
    "subject": "000000"
}

auth-server's People

Contributors

markoluna avatar

Watchers

James Cloos avatar  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.