Skip to content

Commit b9ff08f

Browse files
authored
Merge pull request #10 from mdlmarkham/claude/fix-tsidp-auth-token-01XatCzGAzUCJwoajQrsmdrb
Fix TSIDP authentication token issue
2 parents 1cdc0b1 + b8b7f58 commit b9ff08f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/auth/tsidp_introspection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
import asyncio
88
import requests
99
from typing import Optional
10-
from fastmcp.server.auth import AccessToken
10+
from fastmcp.server.auth import AccessToken, TokenVerifier
1111

1212

13-
class TSIDPIntrospectionVerifier:
13+
class TSIDPIntrospectionVerifier(TokenVerifier):
1414
"""Verify TSIDP access tokens using RFC 7662 token introspection."""
1515

1616
def __init__(

0 commit comments

Comments
 (0)