|
|
|
|
3
|
A module provides upload, download, and files access API. Supports file stream read/write for process large files.
|
3
|
A module provides upload, download, and files access API. Supports file stream read/write for process large files.
|
4
|
|
4
|
|
5
|
## TOC
|
5
|
## TOC
|
6
|
-* [Rationale](#user-content-rationale)
|
|
|
|
|
6
|
+* [About](#user-content-about)
|
7
|
* [Backward Compatible](#user-content-backward-compatible)
|
7
|
* [Backward Compatible](#user-content-backward-compatible)
|
8
|
* [Installation](#user-content-installation)
|
8
|
* [Installation](#user-content-installation)
|
9
|
* [Recipes](#user-content-recipes)
|
9
|
* [Recipes](#user-content-recipes)
|
|
|
|
|
17
|
* [Manage cached files](#user-content-cache-file-management)
|
17
|
* [Manage cached files](#user-content-cache-file-management)
|
18
|
* [Self-Signed SSL Server](#user-content-self-signed-ssl-server)
|
18
|
* [Self-Signed SSL Server](#user-content-self-signed-ssl-server)
|
19
|
* [API References](https://github.com/wkh237/react-native-fetch-blob/wiki/Fetch-API)
|
19
|
* [API References](https://github.com/wkh237/react-native-fetch-blob/wiki/Fetch-API)
|
|
|
20
|
+* [Trouble Shooting](https://github.com/wkh237/react-native-fetch-blob/wiki/Trouble-Shooting)
|
20
|
* [Development](#user-content-development)
|
21
|
* [Development](#user-content-development)
|
21
|
|
22
|
|
22
|
-## Rationale
|
|
|
|
|
23
|
+## About
|
23
|
|
24
|
|
24
|
React Native does not support `Blob` object at this moment, which means if you're going to send/receive binary data via `fetch` API, that might not work as you expect. See [facebook/react-native#854](https://github.com/facebook/react-native/issues/854).
|
25
|
React Native does not support `Blob` object at this moment, which means if you're going to send/receive binary data via `fetch` API, that might not work as you expect. See [facebook/react-native#854](https://github.com/facebook/react-native/issues/854).
|
25
|
|
26
|
|
|
|
|
|
64
|
};
|
65
|
};
|
65
|
...
|
66
|
...
|
66
|
```
|
67
|
```
|
|
|
68
|
+> If you still having problem on installing this package, please check the [trouble shooting page](https://github.com/wkh237/react-native-fetch-blob/wiki/Trouble-Shooting) or [file an issue](https://github.com/wkh237/react-native-fetch-blob/issues/new)
|
67
|
|
69
|
|
68
|
**Grant Permission to External storage for Android 5.0 or lower**
|
70
|
**Grant Permission to External storage for Android 5.0 or lower**
|
69
|
|
71
|
|