MCPcopy
hub / github.com/tornadoweb/tornado / _oauth_consumer_token

Method _oauth_consumer_token

tornado/auth.py:481–486  ·  view source on GitHub ↗

Subclasses must override this to return their OAuth consumer keys. The return value should be a `dict` with keys ``key`` and ``secret``.

(self)

Source from the content-addressed store, hash-verified

479 return url + "?" + urllib.parse.urlencode(args)
480
481 def _oauth_consumer_token(self) -> Dict[str, Any]:
482 """Subclasses must override this to return their OAuth consumer keys.
483
484 The return value should be a `dict` with keys ``key`` and ``secret``.
485 """
486 raise NotImplementedError()
487
488 async def _oauth_get_user_future(
489 self, access_token: Dict[str, Any]

Callers 3

Calls

no outgoing calls

Tested by

no test coverage detected