saleor-app-sdk-REDIS_APL/src/fetch-remote-jwks.ts

7 lines
230 B
TypeScript
Raw Normal View History

import { getJwksUrlFromSaleorApiUrl } from "./urls";
export const fetchRemoteJwks = async (saleorApiUrl: string) => {
const jwksResponse = await fetch(getJwksUrlFromSaleorApiUrl(saleorApiUrl));
return jwksResponse.text();
};