-
Notifications
You must be signed in to change notification settings - Fork 24.3k
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
React-Native appends "charset=utf-8" to HTTP call Content-Type #14445
Comments
As this involves a third party library, can you try and reproduce this using |
After some digging, it seems to be related to the okhttp library. I've put my findings in this related issue: I've also added a comment to the okhttp issue but it doesn't look like they are going to fix it: |
I am having the same issue
I am having the same issue with XHR requests.
Charles shows as @laurent22 points out, it's okhttp adding the content not superagent. I didn't realize that okhttp was a java library, not js library. another issue to read is square/okhttp#2099 where they suggest:
I tracked down react native code as far as here https://github.com/facebook/react-native/blob/master/ReactAndroid/src/main/java/com/facebook/react/modules/network/RequestBodyUtil.java#L123 But i am out of time to figure out further tonight. If i get time over the weekend I'll keep going. |
I have the same issue. Tried using different third party libraries and even RN fetch. It all failed. |
Fixing the server was the simplest solution for me. Thanks @ericwooley |
Hi there! This issue is being closed because it has been inactive for a while. Maybe the issue has been fixed in a recent release, or perhaps it is not affecting a lot of people. Either way, we're automatically closing issues after a period of inactivity. Please do not take it personally! If you think this issue should definitely remain open, please let us know. The following information is helpful when it comes to determining if the issue should be re-opened:
If you would like to work on a patch to fix the issue, contributions are very welcome! Read through the contribution guide, and feel free to hop into #react-native if you need help planning your contribution. |
@hramos , this is still a major issue for me and quite a few others. The Dropbox API still cannot be used from React Native, which prevents me from adding support for it in my app. It would be good if the issue could be re-opened. It's still not working in the latest release candidate and as far as I know there's currently no pull request addressing the issue. |
@hramos , Our server does not prepare api for “utf-8”, and android avd sent requests with “charset=utf-8". So it cause 500 status error. the issue should be re-opened |
In our react-native application we have the same problem |
same thing here. It's incredible that react native claims to be same core and uses different kind of http request for each platform. It should be same behavior on both sides |
Here's a workaround #13487 (comment) |
For anyone else stuck, here's what I did to get around it.
let content = "foo";
let resp = await fetch(
'https://content.dropboxapi.com/2/files/upload', {
method: 'POST',
body: Buffer.from(content, 'utf8'),
headers: new Headers({
'Authorization': 'Bearer ' + this._accessToken,
'Dropbox-API-Arg': JSON.stringify(args),
'Content-Length' : content.length,
'Content-Type': 'application/octet-stream'
})}
); |
Please can someone solves this bug? Waiting for nextcloud support which isn't developed before closing this bug: http://joplin.cozic.net/ |
@Schonhoffer excellent! @Dubidubiduu try solution from @Schonhoffer it should work. |
Is the problem still reproduced after this fix? #23580 (comment) |
The issue is fixed in 0.60 with 4a80776. |
You can also add |
Description
I'm trying to use the Dropbox API with React-Native but when I try to call filesUpload I'm getting the following error:
The Dropbox SDK makes use of the superagent library and it sets up the call like this:
So the content-type is set to just "application/octet-stream" but when the request is eventually executed it's changed to "application/octet-stream; charset=utf-8". I'm assuming the SDK works fine in Node or in a browser, and that it's something that React-Native is adding. Is it a known issue? Is there any way to go around it?
Solution
Make sure that HTTP calls coming from React-Native do not append
; charset=utf-8
to the Content-Type (or make it optional).Additional Information
The text was updated successfully, but these errors were encountered: