change
This commit is contained in:
parent
4cb6f8d3d5
commit
47af1685be
2 changed files with 17 additions and 8 deletions
|
|
@ -17,9 +17,14 @@
|
|||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify({ access_token: accessToken })
|
||||
}).then(() => {
|
||||
}).then((data) => {
|
||||
document.body.innerHTML = "<h2>✅ Login Success!</h2>";
|
||||
document.body.innerHTML += "<a href='/'>go to home</a>";
|
||||
// 가져온 정보를 사용하여 아래에 정보 표시
|
||||
document.body.innerHTML += "<h3>Access Token: " + accessToken + "</h3>";
|
||||
document.body.innerHTML += "<h3>Email : " + data.email + "</h3>";
|
||||
document.body.innerHTML += "<h3>Name : " + data.name + "</h3>";
|
||||
document.body.innerHTML += "<h3>Profile Picture : " + data.picture + "</h3>";
|
||||
});
|
||||
} else {
|
||||
document.body.innerHTML = "<h2>❌ Error: Access Token does not exist.</h2>";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue