fetch icon indicating copy to clipboard operation
fetch copied to clipboard

A fetch API polyfill for React Native with text streaming support.

Results 13 fetch issues
Sort by recently updated
recently updated
newest added

When performing a "DEL" request to a server which responds with an HTTP "204 No Content" response, I get the following error: > Cannot read property 'blobId' of undefined This...

Hey, I cannot get the reader from the readableStream I get following Error: `Error: [TypeError: This stream has already been locked for exclusive reading by another reader]` I also have...

I am trying to read() a `text/event-stream`. The backend already works in curl and in a Next.js app. `value` returned from `reader.read()` is a `number` instead of a `Uint8Array`, which...

First of all, thank you so much for providing this repo ❤️ . We use streams for our subscribe requests and I was able to integrate with your project in...

bug

As previously pointed out in https://github.com/react-native-community/fetch/issues/13#issuecomment-1703097655 , ReactNativeFlipper breaks streaming completely. With Expo SDK50, the nature of these files have changed: > React Native 0.73 changed from Java to Kotlin...

After installing this library and using [react-native-polyfill-globals](https://github.com/acostalima/react-native-polyfill-globals) to polyfill, I'm unable to successfully fetch any data because every request results in `Invalid responseType: blob`. I encountered this both on an...

Im using this package & populating polyfills like this: import 'react-native-polyfill-globals/auto'; my fetch requests (both streaming & non-streaming) work in iOS. It does not work in Android, but I know...

Encountered error `This stream has already been locked for exclusive reading by another reader` when cloning a response that gets read as a stream. Problem was we did not handle...

Hello Team, Looks like `response.clone()` does not work as expected when trying to re-read the response. ```` const myRequest = new Request('https://restcountries.com/v3.1/region/europe'); fetch(myRequest) .then((response) => { const response2 = response.clone();...

@cpojer I'm reaching out to follow up on a previous discussion about coming up with a custom Fetch API implementation for React Native at https://github.com/react-native-community/fetch with support for streaming (https://github.com/facebook/react-native/issues/27741)....