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

Class InvalidRequestError

authlib/oauth2/rfc6749/errors.py:68–78  ·  view source on GitHub ↗

The request is missing a required parameter, includes an unsupported parameter value (other than grant type), repeats a parameter, includes multiple credentials, utilizes more than one mechanism for authenticating the client, or is otherwise malformed. https://tools.ietf.org/htm

Source from the content-addressed store, hash-verified

66
67
68class InvalidRequestError(OAuth2Error):
69 """The request is missing a required parameter, includes an
70 unsupported parameter value (other than grant type),
71 repeats a parameter, includes multiple credentials,
72 utilizes more than one mechanism for authenticating the
73 client, or is otherwise malformed.
74
75 https://tools.ietf.org/html/rfc6749#section-5.2
76 """
77
78 error = "invalid_request"
79
80
81class InvalidClientError(OAuth2Error):

Calls

no outgoing calls

Tested by 1

end_sessionMethod · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…