How can we secure database via the rules that only allow Cloud Functions for Firebase to write data to certain locations, previously there was an option to add uid to admin client databaseAuthVariableOverride
and use that uid in rules section, but now we initialise via admin.initializeApp(functions.config().firebase);
so I’m not to sure about how to add additional params in.
EDIT
is it a good idea to initiate with certificate for this instead? i.e
admin.initializeApp({
credential: admin.credential.cert("/path-to-cert"),
databaseURL: "database-url",
databaseAuthVariableOverride: { uid: "some-id" }
});
What benefit does admin.initializeApp(functions.config().firebase)
have over above and where is functions.config()
actually getting data from, isn't this just a node module?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…