Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ public String buildAuthorizationUrl(String state) {
"&redirect_uri=" + googleProperties.getRedirectUri() +
"&response_type=code" +
"&scope=openid%20email" +
"&state=" + state;
"&state=" + state +
"&prompt=select_account"; // 매번 계정 선택 화면 표시
}

// Access Token 발급
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public String buildAuthorizationUrl(String state) {
"?response_type=code" +
"&client_id=" + naverProperties.getClientId() +
"&redirect_uri=" + naverProperties.getRedirectUri() +
"&state=" + state;
"&state=" + state +
"&auth_type=reauthenticate"; // 매번 로그인 화면 표시 (재인증)
}

// Access Token 발급
Expand Down