diff --git a/callback.html b/callback.html index 3d1576b..3c50cfd 100644 --- a/callback.html +++ b/callback.html @@ -44,7 +44,7 @@ if (result.success) { statusDiv.className = "status success"; - statusDiv.innerHTML = `

✅ 인증 성공!

${JSON.stringify(result, null, 2)}
`; + statusDiv.innerHTML = `

✅ 인증 성공!

accessToken: ${result.accessToken}

${JSON.stringify(result, null, 2)}
`; } else { statusDiv.className = "status error"; statusDiv.innerHTML = `

❌ 토큰 교환 실패

${JSON.stringify(result, null, 2)}
`;