I am having trouble integrating React-dropzone with FeathersJS Upload
I have successfully implemented the RESTful upload when you POST a datauri to my Upload endpoint. { uri: data:image/gif;base64,........}
My issue is when selecting a file in react-dropzone and submitting the form, I am seeing a File
type... It seem's I need to somehow convert that to a data URI.
This should be handled by Dauria... But I think my issue is in my POST request, not having the file
property set with the correct file format. Should I be converting the File
to FormData
?