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
| 66 | |
| 67 | |
| 68 | class 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 | |
| 81 | class InvalidClientError(OAuth2Error): |
no outgoing calls
searching dependent graphs…