We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compile group: 'org.springframework.security', name: 'spring-security-oauth2-client', version: "${oauth2ClientVersion}"
compile group: 'org.springframework.security', name: 'spring-security-oauth2-client', version: "${oauth2ClientVersion}" compile group: 'org.springframework.security', name: 'spring-security-oauth2-jose', version: "${joseVersion}"
The text was updated successfully, but these errors were encountered:
페이스북은 이메일 권한을 설정하면 그니깐 이메일을 공개안하게 설정하면
이메일을 못 가져가는 유저가 있습니다.
유저 판단은 id로 한다고 하지만 이슈 사항이 있습니다.
id
Sorry, something went wrong.
facebook의 user-info-uri을 변경해주면 email을 얻어 올 수 있습니다. 해당 방법은 Spring Security 5 Configuring Custom Provider Properties에 나옵니다.
해당 방법을 사용하면 application.yml에 아래와 같이 입력하면 됩니다.
application.yml
facebook: client-id: {clien-id} client-secret: {client-secret} provider: facebook: user-info-uri: https://graph.facebook.com/v2.12/me?fields=email,name
인제 생각해볼 문제는
Added social login and refactor login
f49f8ca
일반 회원가입 & 소셜 회원가입을 위한 통합 작업 - 공통된 모듈을 CollectAuthenticationUuil로 통합 - 회원가입하고 나서 바로 로그인 가능하게 token 발급 페이스북 social login 같은경우 user-info-uri를 수정해야 email를 얻어옴 - [#4](#8 (comment)) - [Spring Security Configuring Custom Provider Properties](https://docs.spring.io/spring-security/site/docs/5.0.3.RELEASE/reference/htmlsingle/#jc-oauth2login-custom-provider-properties)
LeoHeo
No branches or pull requests
github, facebook만 social login을 하겠다.
google, github, facebook social login을 하겠다.
The text was updated successfully, but these errors were encountered: