(self, method, url, token=None, **kwargs)
| 15 | |
| 16 | class 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. |
no test coverage detected