Skip to content

earlgrey7800/oauth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

인증토큰을 얻는 방법

1. postman 에서 확인

-- url 주소 POST https://localhost:8090/oauth/token

Type : Basic Auth Username : uengine-client Password : uengine-secret

-- body 부분 grant_type : password username : [email protected] password : password

httpie 로 테스트

http --form POST localhost:8090/oauth/token \
"Authorization: Basic dWVuZ2luZS1jbGllbnQ6dWVuZ2luZS1zZWNyZXQ=" \
grant_type=password \
username=[email protected] \
password=password

jks 파일 생성 방법

https://www.lesstif.com/pages/viewpage.action?pageId=20775436

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 98.9%
  • Dockerfile 1.1%