We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b400b2 commit 681a718Copy full SHA for 681a718
1 file changed
examples/servers/simple-auth/mcp_simple_auth/auth_server.py
@@ -121,11 +121,11 @@ async def introspect_handler(request: Request) -> Response:
121
"iat": int(time.time()),
122
"token_type": "Bearer",
123
}
124
-
+
125
# Include audience claim for RFC 8707 resource validation
126
if access_token.resource:
127
response_data["aud"] = access_token.resource
128
129
return JSONResponse(response_data)
130
131
routes.append(
0 commit comments