-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: apple oauth secret key 수정 및 회원 탈퇴 페이지 로직 수정 * feat: client failure logging * fix: apple client secret 생성 로직 변경 * feat: apple client content type 지정 * fix: oidc decode payload 수정 * fix: apple oauth token response 변경 * chore: logging 추가 * chore: 에러 해결용 검증 로직 추가 * chore: 에러 해결용 에러 로깅 추가 * fix: 에러 처리 로직 수정 * fix: 함수 파라미터 변경 * fix: withdraw 로직 수정 * fix: withdraw client Unit 대응하도록 변경 * fix: 주석 수정, deploy branch 수정 * chore: ktlint formatting
- Loading branch information
Showing
20 changed files
with
122 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,17 +7,17 @@ | |
crossorigin | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css" | ||
/> | ||
<link rel="stylesheet" th:href="@{/css/withdraw.css}" /> | ||
<link rel="stylesheet" th:href="@{/css/withdraw.css}"/> | ||
<link rel="apple-touch-icon" sizes="180x180" th:href="@{/apple-touch-icon.png}"> | ||
<link rel="icon" type="image/png" sizes="192x192" th:href="@{/susufavicon_16_16.png}"> | ||
<link rel="icon" type="image/png" sizes="192x192" th:href="@{/susufavicon_16_16.png}"> | ||
<link rel="icon" type="image/png" sizes="32x32" th:href="@{/susufavicon_32_32.png}"> | ||
<link rel="icon" type="image/png" sizes="16x16" th:href="@{/susufavicon_16_16.png}"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<script th:inline="javascript"> | ||
/*<![CDATA[*/ | ||
function withdrawUser(xSusuAuthToken, googleAccessToken) { | ||
function withdrawUser(xSusuAuthToken, googleAccessToken, appleAccessToken) { | ||
$.ajax({ | ||
url: `/api/v1/auth/withdraw?accessToken=` + googleAccessToken, | ||
url: `/api/v1/auth/withdraw?googleAccessToken=` + googleAccessToken + `appleAccessToken=` + appleAccessToken, | ||
type: 'post', | ||
contentType: 'application/json; charset=utf-8', | ||
dataType: 'application/json', | ||
|
@@ -33,9 +33,10 @@ | |
} | ||
}); | ||
} | ||
|
||
/*]]>*/ | ||
</script> | ||
<meta charset="utf-8" /> | ||
<meta charset="utf-8"/> | ||
<title>SUSU 회원 탈퇴</title> | ||
</head> | ||
<body> | ||
|
@@ -48,15 +49,15 @@ | |
탈퇴 시 작성했던 데이터를 복구할 수 없어요 | ||
</p> | ||
<div class="withdrawButton" | ||
th:attr="xSusuAuthToken=${xSusuAuthToken}, googleAccessToken=${googleAccessToken}" | ||
th:onclick="withdrawUser(this.getAttribute('xSusuAuthToken'), this.getAttribute('googleAccessToken'))" /> | ||
<p>탈퇴</p> | ||
</div> | ||
th:attr="xSusuAuthToken=${xSusuAuthToken}, googleAccessToken=${googleAccessToken}, appleAccessToken=${appleAccessToken}" | ||
th:onclick="withdrawUser(this.getAttribute('xSusuAuthToken'), this.getAttribute('googleAccessToken'), this.getAttribute('appleAccessToken')))"/> | ||
<p>탈퇴</p> | ||
</div> | ||
</div> | ||
<div class="Logo"> | ||
<svg th:replace="~{component/logo}">logo</svg> | ||
</div> | ||
</div> | ||
<div class="Logo"> | ||
<svg th:replace="~{component/logo}">logo</svg> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.