| Server IP : 35.80.110.71 / Your IP : 216.73.216.21 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/requests_oauthlib-stubs/ |
Upload File : |
from _typeshed import Incomplete
from logging import Logger
from oauthlib.oauth1 import Client
from requests.auth import AuthBase
CONTENT_TYPE_FORM_URLENCODED: str
CONTENT_TYPE_MULTI_PART: str
log: Logger
class OAuth1(AuthBase):
client_class: type[Client]
client: Client
force_include_body: bool
def __init__(
self,
client_key,
client_secret: Incomplete | None = None,
resource_owner_key: Incomplete | None = None,
resource_owner_secret: Incomplete | None = None,
callback_uri: Incomplete | None = None,
signature_method="HMAC-SHA1",
signature_type="AUTH_HEADER",
rsa_key: Incomplete | None = None,
verifier: Incomplete | None = None,
decoding: str = "utf-8",
client_class: type[Client] | None = None,
force_include_body: bool = False,
*,
encoding: str = "utf-8",
nonce: Incomplete | None = None,
timestamp: Incomplete | None = None,
) -> None: ...