I have a web application on GAE node.js standard environment. The server receives a POST request containing json in its body (not ready json file). I want to write this json file to Cloud Storage. How to do this?
You need to write JSON file to /tmp
directory using fs.createWriteStream
and then write it to Storage using Storage API