Skip to content

Commit

Permalink
fix: Resolve issues with Node.js JWT implementation (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
chyroc authored Jan 23, 2025
1 parent df26ad6 commit f5e202b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodejs/jwt-oauth/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ router.get("/callback", async (ctx) => {
appId: config.client_id,
aud: "api.coze.cn",
keyid: config.public_key_id,
privateKey: config.client_secret,
privateKey: config.private_key,
});

// Check if it's an AJAX request
Expand Down

0 comments on commit f5e202b

Please sign in to comment.