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가 만났을때
- Host: GitHub
- URL: https://github.com/koeonyack/jwt-simple-go
- Owner: KoEonYack
- Created: 2020-06-24T12:29:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-24T12:35:42.000Z (almost 5 years ago)
- Last Synced: 2025-01-04T08:43:00.914Z (5 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)