-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
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
String decoding fails for POST requests with byte payload #844
Comments
On the same idea, I have the issue of using Whisper model from OpenAI, using their official librairy, the client is HTTPx, and it send a post with bytes data. I have the same failure at a different place:
So the questions are: Is this decode necessary at this moment ? How can we use VCRPY in these cases ? |
I got it to work with this patch |
This looks like a duplicate of #660 |
Probably needs this too 1ef75a1 |
One of my requests I am trying to record uploads an image to cloud storage.
The POST requests' payload is a byte-string (not a BytesIO object).
The body contains some non-utf-8 characters and when trying to decode them, function
replace_post_data_parameters
breaksThe text was updated successfully, but these errors were encountered: