When doing an API call for which the method is get but where parameters are provided an exception occurs for unknown attribute json=data.
This is due to the httpx get method not supporting the json parameter, instead the params parameter has to be provided.
This fixed checks if the method is get and if it is will provide the additional parameters through params parameter instead.
When doing an API call for which the method is get but where parameters are provided an exception occurs for unknown attribute json=data. This is due to the httpx get method not supporting the json parameter, instead the params parameter has to be provided.
This fixed checks if the method is get and if it is will provide the additional parameters through params parameter instead.