From 5c5929ab4be028b5ee21d012e0b0d027c12d2286 Mon Sep 17 00:00:00 2001 From: Michael Luo <8098155+mluogh@users.noreply.github.com> Date: Wed, 13 Sep 2023 23:41:02 -0700 Subject: [PATCH] Add further documentation --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 8a5c7cb..fd99cef 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,11 @@ async def google_login(request: Request): @app.get("/google/callback") async def google_callback(request: Request): ... + with google_sso: + user = await google_sso.verify_and_process( + request, redirect_uri=str(request.url_for("google_callback")) + ) + ... ``` ### Specify scope