Open MarcDanjou opened 8 months ago
Same issue here. I tried with the following cURL request:
curl --location 'http://localhost:9023/storage/v1/b/test-bucket/o?uploadType=multipart' \
--header 'Content-Type: multipart/related; boundary=separator_string' \
--data '--separator_string
Content-Type: application/json; charset=UTF-8
{"name":"my-document.txt"}
--separator_string
Content-Type: text/plain
This is a text file.
--separator_string--'
I was using this documentation as a reference.
Hello there, thanks for this awesome package. I am currently using it in a docker-compose env + a nodejs fastify application running on node 20.
I am trying to stream a file upload to a bucket, following the samples from google there ==> https://github.com/googleapis/nodejs-storage/blob/main/samples/streamFileUpload.js
But at every call, I am receiving this error ==>
'NoneType' object is not callable
I did the same test using a real bucket on Google cloud storage and it works flawlessly, I guess this is related to some methods not implemented yet in this emulator nope ?
Thanks again :+1: