标签: firebase google-cloud-firestore google-cloud-functions
当Firestore文档发生更改时,使用云功能来调用部署在同一Google云项目中的内部https服务的最佳方法是什么。
exports.functionName =functions.firestore.document('/collection/doc').onWrite(function(change,context){ //i want to call https service of the same project. });