We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently it isn't possible to send requests in text/plain format, because they are converted to application/json compatible format.
Temporary ugly monkeypatch snippet for those, who use bravado+pytest:
from bravado_core.param import marshal_param def _marshal_param(param, value, request): marshal_param(param, value, request) if param.location == 'body' and param.op.consumes == ['text/plain']: request['headers']['Content-Type'] = 'text/plain' request['data'] = value monkeypatch.setattr('bravado.client.marshal_param', _marshal_param)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently it isn't possible to send requests in text/plain format, because they are converted to application/json compatible format.
Temporary ugly monkeypatch snippet for those, who use bravado+pytest:
The text was updated successfully, but these errors were encountered: