この問題はここの問題に記載されていますが、まだ回答がありません。
ドキュメントには、ダウンロード許可/拒否許可機能が userId と fileObj を取得すると書かれていますが、これを試したところ、 userId は単なる値false
です。
UserImages.deny({
download: function(userId, fileObj) {
// use userId to determine if download should be allowed.
console.log(userId); // <=== This for some reason always prints `false` even when the user is logged in
return false;
}
});
問題を見ると、これはバグかもしれませんが、確認できません。