Last active
September 5, 2024 05:26
-
-
Save AshikNesin/ca4ad1ff1d24c26cb228a3fb5c72e0d5 to your computer and use it in GitHub Desktop.
Base64 image to multipart/form-data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const base64 = 'data:image/png;base64,....' // Place your base64 url here. | |
fetch(base64) | |
.then(res => res.blob()) | |
.then(blob => { | |
const fd = new FormData(); | |
const file = new File([blob], "filename.jpeg"); | |
fd.append('image', file) | |
// Let's upload the file | |
// Don't set contentType manually → https://github.com/github/fetch/issues/505#issuecomment-293064470 | |
const API_URL = 'https://example.com/add_image' | |
fetch(API_URL, {method: 'POST', body: fd) | |
.then(res => res.json()) | |
.then(res => console.log(res)) | |
TypeError: Network request failed
TypeError: Network request failed
Same for me also
TypeError: Network request failed
Same here :(
Thanks for sharing
Genius, thanks.
Disgusting. Thanks.
TypeError: Network request failed
you need to create the base64 with all its structure ""data:mimeType;base64,base64data":
"data;application/pdf;base64,afdnxhfuiesfslg........"
thank you bro you saved my me
Thanks for sharing
worked for me adding type: 'image/png' :
const file = new File([blob], "filename.png", { type: 'image/png' }); fileData.append('file', file);
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nfahrni my bad, didn't notice it before. Fixed it now, thanks :)