Skip to content

Commit

Permalink
update care jwks url
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak committed Sep 27, 2024
1 parent 0888ff4 commit 61de31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/jose.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export async function getCareJWKs() {
if (!careJWKs) {
const controller = new AbortController();
setTimeout(() => controller.abort(), 5000);
const res = await fetch(`${careApi}/.well-known/openid-configuration`, {
const res = await fetch(`${careApi}/.well-known/jwks.json`, {
signal: controller.signal,
}).then((res) => {
if (!res.ok) {
Expand Down

0 comments on commit 61de31c

Please sign in to comment.