Open BayBreezy opened 5 days ago
are you sure that you're sending the files in Base64? If you're not sure check out the code for the fileInputHandler
composable
No. Postman sends the file as is. So I have access to the regular properties that are available when a file is uploaded to a server.
In Nuxt 3, the readMultipartFormData
utility gives me access to the file Buffer.
Do i need to convert said buffer to a base64 string?
yes, the files are currently being uploaded with Base64, I will add more settings to allow users to alternate between MultipartFormData and Base64
Hey, if it worked for you please let me know and if it worked please close this issue, thanks!
Hello,
I was trying out the package earlier but was having difficulties getting an upload from Postman to work.
Is there an example anywhere of uploading files directly from an external source(Not the nuxt frontend)?
Or is it a case where we have to use the files from the frontend of the nuxt app?