MCPcopy Index your code
hub / github.com/authlib/authlib / request

Method request

authlib/integrations/base_client/async_app.py:17–19  ·  view source on GitHub ↗
(self, method, url, token=None, **kwargs)

Source from the content-addressed store, hash-verified

15
16class AsyncOAuth1Mixin(OAuth1Base):
17 async def request(self, method, url, token=None, **kwargs):
18 async with self._get_oauth_client() as session:
19 return await _http_request(self, session, method, url, token, kwargs)
20
21 async def create_authorization_url(self, redirect_uri=None, **kwargs):
22 """Generate the authorization url and state for HTTP redirect.

Callers 2

load_server_metadataMethod · 0.45
_http_requestFunction · 0.45

Calls 2

_http_requestFunction · 0.85
_get_oauth_clientMethod · 0.45

Tested by

no test coverage detected