Ben Hsieh

Results 57 comments of Ben Hsieh

Because react native change Android application template in 0.29, `rnpm link` is broken in 0.29.0~0.29.1, see [this issue](https://github.com/facebook/react-native/issues/8603). You can fix this by link the Android library manually, or just...

@qq597578205 , FTP protocol is not supported ATM, we'll consider if add this feature in the furture, thank you.

Does it help if you add this line at the beginning of your program ? ```js global.self = {} ```

@lll000111 , thanks for the great help 👍 let me run the test and figure out what's going on 😄

@bdavid68 @lll000111 I think this is by designed. Quote from OkHttp's document > Note that transport-layer success (receiving a HTTP response code, headers and body) does not necessarily indicate application-layer...

@jackdoe , since the arguments(headers) you passed to native context, will be treated as `string`, you have to ensure every entry has a string value. ```diff return RNFetchBlob.fetch( 'POST', 'https://google.com/',...

@jackdoe , thanks for the advice, will improve the error message so that it's more clear 👍

Thanks for providing the information, will look into this issue ASAP 👍

After some investigation, the problem is that [our Android URI resolver](https://github.com/wkh237/react-native-fetch-blob/blob/master/android/src/main/java/com/RNFetchBlob/Utils/PathResolver.java) couldn't get the absolute file path from the given URI. I will try to figure out if there's a...

@ChrisPikul510 @tlvince , is there any way to make a content provider URI like `content://com.app.provider/app_images/Android/data/com.app/files/Pictures/image-a00a13f4-a24f-40ce-bb16-e56979b75692.jpg` and `content://com.google.android.apps.docs.storage.legacy/enc%3D2cnEPvlNW2uZUjq8h_w7hhNWmkRhsPqHum9gJTxeOrsaGiV3%0A` ? In my case, the URIs from camera roll look like this `content://media/external/images/media/694`,...