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

Method __call__

authlib/oauth2/base.py:57–62  ·  view source on GitHub ↗
(self, uri=None)

Source from the content-addressed store, hash-verified

55 return error
56
57 def __call__(self, uri=None):
58 if self.redirect_uri:
59 params = self.get_body()
60 loc = add_params_to_uri(self.redirect_uri, params, self.redirect_fragment)
61 return 302, "", [("Location", loc)]
62 return super().__call__(uri=uri)

Callers

nothing calls this directly

Calls 2

get_bodyMethod · 0.95
add_params_to_uriFunction · 0.90

Tested by

no test coverage detected