We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b1baa commit 28dfcd2Copy full SHA for 28dfcd2
src/google/adk/auth/oauth2_credential_fetcher.py
@@ -20,6 +20,7 @@
20
21
from fastapi.openapi.models import OAuth2
22
23
+from ..utils.feature_decorator import experimental
24
from .auth_credential import AuthCredential
25
from .auth_schemes import AuthScheme
26
from .auth_schemes import OAuthGrantType
@@ -37,8 +38,9 @@
37
38
logger = logging.getLogger("google_adk." + __name__)
39
40
41
+@experimental
42
class OAuth2CredentialFetcher:
- """Exchanges and refreshes an OAuth2 access token."""
43
+ """Exchanges and refreshes an OAuth2 access token. (Experimental)"""
44
45
def __init__(
46
self,
0 commit comments