Skip to content

Commit

Permalink
chore(demo): add console (#82)
Browse files Browse the repository at this point in the history
* chore(demo): add console

* chore(demo): add console
  • Loading branch information
stakbucks authored Nov 3, 2024
1 parent 577cbb2 commit 06e2ac4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/demo/src/app/kakao/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export async function GET(request: Request) {

const loginData = await login(accessToken);

console.log('loginData', accessToken, loginData);

const headers = new Headers();
headers.append('Set-Cookie', `accessToken=${loginData.accessToken}`);
headers.append('Set-Cookie', `refreshToken=${loginData.refreshToken}`);
Expand Down

0 comments on commit 06e2ac4

Please sign in to comment.