1

generateUserHashID を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,
    });
  },
});

カディラによると:

ここに画像の説明を入力

メソッド内のどこにもないのに、なぜこれらすべてのサブスクリプションを待っているのかわかりません。

4

1 に答える 1