私はうまく動作するGoogle Cloud Functionを持っています。コールバックの前に一度実行すると、Firestoreに接続してNotifications
コレクションにドキュメントを追加します。Google CloudのJSONプロジェクトのキーファイルをGoogle Cloud機能に含めるにはどうすればいいですか?
const Firestore = require('@google-cloud/firestore');
const firestore = new Firestore({
projectId: 'my-firebase-project',
keyFilename: 'thekey.json',
});
var fsDocument = {
'username': 'theuser',
'organization': 'theorg',
'attr': [
{k:'key1', v:'val1'},
{k:'key2', v:'val2'}
]
};
firestore.collection('Notifications').add(fsDocument).then(documentReference => {
console.log('Added document with name' + documentReference.id);
});
グーグルクラウド機能にキーファイルを含めるにはどうすればよいですか?これまでは、console.cloud.google.comで作成しています。