인증 성공 시 accessToken을 표시하도록 수정
This commit is contained in:
parent
e5696aeb19
commit
18d806560d
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
if (result.success) {
|
||||
statusDiv.className = "status success";
|
||||
statusDiv.innerHTML = `<h3>✅ 인증 성공!</h3><pre>${JSON.stringify(result, null, 2)}</pre>`;
|
||||
statusDiv.innerHTML = `<h3>✅ 인증 성공!</h3><h1>accessToken: ${result.accessToken}</h1><pre>${JSON.stringify(result, null, 2)}</pre>`;
|
||||
} else {
|
||||
statusDiv.className = "status error";
|
||||
statusDiv.innerHTML = `<h3>❌ 토큰 교환 실패</h3><pre>${JSON.stringify(result, null, 2)}</pre>`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue