benjreinhart / react-native-aws3

Pure JavaScript React Native library for uploading to AWS S3
MIT License
399 stars 151 forks source link

Not upload photo in debug mode #49

Closed gusgard closed 7 years ago

gusgard commented 7 years ago

In debug mode RN use V8, and don't know why throw 412 (Precondition Failed)

<?xml version="1.0" encoding="UTF-8"?>
<Error>
<Code>PreconditionFailed</Code>
<Message>At least one of the pre-conditions you specified did not hold</Message>
<Condition>Bucket POST must be of the enclosure-type multipart/form-data</Condition>
<RequestId>03124D2C211F0A65</RequestId>
<HostId>...</HostId>
</Error>

I want to know what library is incompatible with JavascriptCore

gusgard commented 7 years ago

My bad I was reassigning XMLHttpRequest.

GLOBAL.XMLHttpRequest = GLOBAL.originalXMLHttpRequest || GLOBAL.XMLHttpRequest;