-
Notifications
You must be signed in to change notification settings - Fork 35
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
415 Error When Setting Content-Type Header with Request Header #40
Comments
can see in new code it has been already fixed |
Given the current issues, when are you planning to release an updated version? |
Currently blocked on using cronet because of this. Any response? |
any updates on this? when are you planning to release? |
@Danstahrg @google-admin any updates ? Like Commit 0a43782, It seems that the version in the Maven repository hasn't been updated for a long time. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description:
I'm encountering a 415 (Unsupported Media Type) error when using Cronet to send requests with a request body and an explicitly set Content-Type header
Steps to Reproduce:
Create an OkHttp Request object with a non-empty RequestBody and set the "Content-Type" header to "application/json".
Use the Cronet library to send the request.
Observe a 415 error response from the server.
Expected Behavior:
The server should accept the request with the specified Content-Type and process the JSON payload.
Actual Behavior:
The server returns a 415 error, indicating that it doesn't support the provided Content-Type.
RequestResponseConverter class has
As the above check is incorrect and shouldn't replace
Content-Type
header withapplication/octet-stream
blindly. It should respect whatever user is setting.The text was updated successfully, but these errors were encountered: