Skip to content

Commit

Permalink
Merge pull request #325 from Quickchive/fix/use-rs-256
Browse files Browse the repository at this point in the history
fix: log
  • Loading branch information
stae1102 authored May 6, 2024
2 parents 09df58e + cb542ae commit 08819b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/auth/util/oauth.util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class OAuthUtil {

// Get User Info from Kakao Auth Server
async getKakaoUserInfo(
access_token: String,
access_token: string,
): Promise<GetKakaoUserInfoOutput> {
try {
const { data: userInfo } = await axios
Expand Down Expand Up @@ -83,6 +83,7 @@ export class OAuthUtil {
};

const privateKey = process.env.APPLE_SECRET_KEY;
console.log(privateKey);

return this.jwtService.sign(claims, {
keyid: process.env.APPLE_KEY_ID,
Expand Down

0 comments on commit 08819b7

Please sign in to comment.