Skip to content Skip to sidebar Skip to footer

Upload Image From Google Cloud Function To Cloud Storage

I'm attempting to handle file uploads using a Google Cloud Function. This function uses Busboy to parse the multipart form data and then upload to Google Cloud Storage. I keep rece

Solution 1:

I eventually gave up on using Busboy. The latest versions of Google Cloud Functions support both Python and Node 8. In node 8, I just put everything into async/await functions and it works fine.


Post a Comment for "Upload Image From Google Cloud Function To Cloud Storage"