如何使用 shell 脚本从 firebase/firestore 上的特定集合中获取文档名称

How to get the documents name from a particular collection that present on a firebase/ firestore using shell script

如何使用 javascript 将 firebase 上特定集合中的所有文档名称(文档 ID)保存到 .txt 文件中。 每次执行 javascript.

时,.txt 文件都应该更新

https://i.stack.imgur.com/qyn8H.png

正如之前帖子中的回答,, you can use REST API list 从特定集合调用 return 文档名称。

下面是一个列出集合文档并将其保存到文本文件 (docs.txt) 的示例:

curl GET "https://firestore.googleapis.com/v1beta1/projects/{project-ID}/databases/(default)/documents/{collection-name}" > docs.txt

您需要将 {project-ID} 替换为您在 Firestore 中的项目 ID,并将 {collection-ID} 替换为您的集合分别命名。