Bug 1749770 Comment 3 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

What's going on is the `function(**form.cleaned_data)` thing. If we add a `**kwargs` to all the api functions, then that'll slurp up the fake querystring params and we can ignore them.
There are two issues.

For some of the fuzzing things we're seeing, they're hitting API endpoints that have a GET, but no POST/PUT/DELETE and the default SocorroCommon implements all those methods with default functions for some reason. So we need to go through and set them to None.

The other fuzzing things we're seeing, it's dying because the form allows for other params, but the function doesn't. If we add a `**kwargs` to the other api functions, then that'll slurp up the fake querystring and data params and we can ignore them.

Back to Bug 1749770 Comment 3