Skip to content

Commit

Permalink
⬇️ D
Browse files Browse the repository at this point in the history
  • Loading branch information
labyrinth30 committed Jun 29, 2024
1 parent a3e32e0 commit ff72db9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class AuthService {
// 토큰을 받아온다.

const response = await firstValueFrom(
this.http.post(this.KAKAO_TOKEN_URL, '', { headers: tokenHeaders }),
this.http.post(this.KAKAO_TOKEN_URL, params, { headers: tokenHeaders }),
);
const { access_token } = response.data;
console.log('access_token:', access_token);
Expand Down

0 comments on commit ff72db9

Please sign in to comment.