From 3faa3b8ce7ed1a0638f8705026d6667f2e7f8629 Mon Sep 17 00:00:00 2001 From: SkyWalker-CMD <42524311+SkyWalker-CMD@users.noreply.github.com> Date: Mon, 16 Feb 2026 09:49:09 -0500 Subject: [PATCH] Add missing comma in @requires_access_token parameters Signed-off-by: SkyWalker-CMD <42524311+SkyWalker-CMD@users.noreply.github.com> --- documentation/docs/user-guide/identity/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/user-guide/identity/quickstart.md b/documentation/docs/user-guide/identity/quickstart.md index 218846b2..5d1ce9ce 100644 --- a/documentation/docs/user-guide/identity/quickstart.md +++ b/documentation/docs/user-guide/identity/quickstart.md @@ -260,7 +260,7 @@ async def handle_auth_url(url): scopes=["openid"], auth_flow="USER_FEDERATION", on_auth_url=handle_auth_url, # streams authorization URL to client - force_authentication=True + force_authentication=True, callback_url='' ) async def introspect_with_decorator(*, access_token: str):