From 30ceeb86c3229ca9513c840d5c24be725fdb9c6f Mon Sep 17 00:00:00 2001 From: Vritant Bhardwaj Date: Fri, 16 Aug 2024 14:24:24 -0700 Subject: [PATCH] Update default OAuth web flow path in README (#2723) Update default OAuth web flow path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 87f08170dd..bdd5020e1c 100644 --- a/README.md +++ b/README.md @@ -825,7 +825,7 @@ app.oauth.on("token.created", async ({ token, octokit }) => { }); // Your app can receive the OAuth redirect at /api/github/oauth/callback -// Users can initiate the OAuth web flow by opening /api/oauth/login +// Users can initiate the OAuth web flow by opening /api/github/oauth/login createServer(createNodeMiddleware(app)).listen(3000); ```