This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Description
I am using react native fetch blob and getting this in response.
imageUpload(image){
RNFetchBlob.fetch('POST', BASE_URL+'api/multimedia/image', {
'Content-Type' : 'multipart/form-data',
}, [
{ name : 'avatar', filename : image, type:'image/jpg', data: RNFetchBlob.wrap(image)},
]).then((resp) => {
alert(JSON.stringify(resp))
}).catch((err) => {
alert('error')
})
}
I am getting this response(see in image)
