An open API service indexing awesome lists of open source software.

https://github.com/koeonyack/jwt-simple-go

GO와 JWT가 만났을때
https://github.com/koeonyack/jwt-simple-go

Last synced: 3 months ago
JSON representation

GO와 JWT가 만났을때

Awesome Lists containing this project

README

        

# Go JWT

-----------------------

# Run

```
~ client> go run main.go
~ server> go run main.go
```
- Client, Server에서 각각 main.go를 실행해야합니다.

# Working

```
mkdir client && cd client
client> go mod init github.com/elliotforbes/go-jwt-tutorial/client
```
- 초기에 go mod를 설정하여 작업하였습니다.

# Ref
- [Securing Your Go REST APIs with JSON Web Tokens(JWTS)
](https://youtu.be/-Scg9INymBs)