-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
S3 Multipart upload React Native #1924
Comments
I'm not a React Native expert, so you might want to cross-post this to Stack Overflow to see if you can get more opinions. It looks like React Native just recently added support for blobs to their implementation, but the linked PR does not seem to have been included in any released version yet. Without Blob/File support, I believe you would need to get the contents of the file into JS memory and upload them as buffers or typed arrays. With files of that size, though, you might want to look into a native code solution that uploads a file using a presigned POST form or a presigned PutObject URL. You can also try the |
Wow it finally got merged. Thanks @jeskew |
@jmparsons Have you found any solution to this yet? Here is the piece of code I'm using to upload a large file but I still got
|
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread. |
Can React Native do multipart / managed s3 uploads?
Trying to upload very large files from react native, 500mb+.
The text was updated successfully, but these errors were encountered: