generateUserHash
ID をIntercomに渡してユーザー ハッシュを取得する Meteor メソッドがあります。
export const generateUserHash = new ValidatedMethod({
name: 'generateUserHash',
validate() {},
run() {
if (!Meteor.isServer) return;
if (!this.userId) throw new Meteor.Error('no-user-id');
return SecureMode.userHash({
identifier: this.userId,
secretKey: Meteor.settings.intercom.secretKey,
});
},
});
カディラによると:
メソッド内のどこにもないのに、なぜこれらすべてのサブスクリプションを待っているのかわかりません。