We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5147d32 commit fbd8eb7Copy full SHA for fbd8eb7
src/actor/server.ts
@@ -65,7 +65,7 @@ export function createExpressApp(
65
res.status(200).end();
66
});
67
68
- app.head(Routes.WELL_KNOWN_OAUTH_AUTHORIZATION_SERVER, async (_req: Request, res: Response) => {
+ app.get(Routes.WELL_KNOWN_OAUTH_AUTHORIZATION_SERVER, async (_req: Request, res: Response) => {
69
// The endpoint is the same
70
const response = await fetch(`${authorizationServer}${Routes.WELL_KNOWN_OAUTH_AUTHORIZATION_SERVER}`);
71
const data = await response.json();
0 commit comments