Returns the `.AsyncHTTPClient` instance to be used for auth requests. May be overridden by subclasses to use an HTTP client other than the default. .. versionadded:: 4.3
(self)
| 664 | return escape.json_decode(response.body) |
| 665 | |
| 666 | def get_auth_http_client(self) -> httpclient.AsyncHTTPClient: |
| 667 | """Returns the `.AsyncHTTPClient` instance to be used for auth requests. |
| 668 | |
| 669 | May be overridden by subclasses to use an HTTP client other than |
| 670 | the default. |
| 671 | |
| 672 | .. versionadded:: 4.3 |
| 673 | """ |
| 674 | return httpclient.AsyncHTTPClient() |
| 675 | |
| 676 | |
| 677 | class TwitterMixin(OAuthMixin): |