Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- jetbrains
- Vane
- ruby
- 개발노트
- gradle
- JS
- 루비
- gnuplot
- GitHub
- Godot
- OAuth
- kotlin
- Python
- CPP
- Java
- error
- OTLanguage
- plugin
- IntelliJ
- boj
- C
- Spring
- Shell
- maven
- ruby2d
- RaspberryPi
- react
- Baekjoon
- Android
- rubymine
Archives
- Today
- Total
PersesTitan(페르) 기술블로그
[Spring] Naver OAuth2로그인 구현 본문
Naver
Step 1
https://developers.naver.com/main/
Step 2
Application -> 애플리케이션 등록으로 접속
Step 3
약관에 동의 후 각 값들을 입력해줍니다. 처음 이용하시는 것이라면 핸드폰 인증 후 진행하실 수 있습니다.
해당 값들을 입력해주시면 등록하실 수 있습니다.
Step 4
등록이 끝나시면 Client ID와 Client Secret값을 얻을 수 있습니다.
아이디 적용하기
이제 발급 받은 아이디와 비밀번호를 application에 입력해주시면 됩니다.
application.yml
spring:
security:
oauth2:
client:
registration:
naver:
client-id: 클라이언트 아이디
client-secret: 클라이언트 시크릿
application.properties
spring.security.oauth2.client.registration.naver.clientId=클라이언트 아이디
spring.security.oauth2.client.registration.naver.clientSecret=클라이언트 시크릿
'Framework > Spring' 카테고리의 다른 글
[Spring] Kakao OAuth2로그인 구현 (0) | 2023.11.29 |
---|---|
[Spring] 서버가 켜지지 않고 바로 종료될때 (Maven 프로젝트 빌드) (0) | 2023.08.18 |
[IntelliJ] Maven reload하는 법 (Build), 수정 내용 적용하는 방법들 (0) | 2023.08.18 |
[Spring] Google OAuth2로그인 구현 (0) | 2023.01.20 |
[Spring] Github OAuth2로그인 구현 (0) | 2023.01.12 |