Created
September 25, 2022 20:52
-
-
Save colbyfayock/f0778baf2684d49fdaace5ee37e70138 to your computer and use it in GitHub Desktop.
Upload Blob to Cloudinary in Node
This file contains hidden or 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 response = await fetch("https://pbs.twimg.com/profile_images/1457798886710738944/HWg9ES8r_400x400.jpg") | |
const contentType = response.headers.get("Content-Type"); | |
const blob = await response.blob(); | |
const arrayBuffer = await blob.arrayBuffer(); | |
const buffer = Buffer.from(arrayBuffer); | |
const dataUri = `data:${contentType};base64,${buffer.toString('base64')}`; | |
const upload = await cloudinary.uploader.upload(dataUri); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment