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 14c0873 commit 970603eCopy full SHA for 970603e
stubs/Authlib/authlib/oauth1/client.pyi
@@ -1,4 +1,5 @@
1
from _typeshed import Incomplete
2
+from typing import Any
3
4
from authlib.oauth1 import ClientAuth
5
@@ -31,7 +32,7 @@ class OAuth1Client:
31
32
@token.setter
33
def token(self, token) -> None: ...
34
def create_authorization_url(self, url, request_token=None, **kwargs): ...
- def fetch_request_token(self, url, **kwargs): ...
35
+ def fetch_request_token(self, url: str, **kwargs) -> dict[str, Any]: ...
36
def fetch_access_token(self, url, verifier=None, **kwargs): ...
37
def parse_authorization_response(self, url): ...
38
def parse_response_token(self, status_code, text): ...
0 commit comments