My backend accepts raw images & binary for the image upload (works in Postman), but on the React Native frontend I am using react-native-image-crop-picker
to just get a uri
for the image and so on.
I need to be able to send the image as its raw or binary form, rather than embed it in FormData.
I am using Axios for my requests.
How can I accomplish this?