[Spring boot][Apple Login] 애플로그인 구현
·
Spring/소셜로그인
매우 악명이 높은 애플로그인을 ..... 구현해보았습니다...... 제가 이해한 애플로그인의 방법은 1. 프론트로부터 authorization_code를 넘겨받고 2. 해당 코드로 유저정보 및 access token을 발급받고 3. DB에 없는 회원이라면 회원가입을 시킨 후 로그인하고, 기존회원이라면 로그인을 시킨 후 4. 토큰을 반환하는 식으로... 구현하였습니다 spring: security: oauth2: client: registration: apple: clientId: [Bundle ID] clientSecret: /home/ec2-user/app/[keyname.p8] redirect-uri: https://[domain.com]/login/oauth2/code/apple authorizat..