pushoo icon indicating copy to clipboard operation
pushoo copied to clipboard

wxpusher uids如何調用

Open mk2leo opened this issue 1 year ago • 1 comments

請問如何傳入uids 參數..使用py 和JS 代碼

mk2leo avatar Mar 07 '23 05:03 mk2leo

像这样:

  pushoo
    .notice('wxpusher', {
      content:
        'hello world, this is a test message from pushoo, please ignore it.',
      token: 'AT_P2345678',
      options: {
        wxpusher: {
          uids: ['UID_1', 'UID_2'],
        },
      },
    })
    .then((rlt) => {
      console.log(`Pushoo notice success: ${JSON.stringify(rlt)}`);
    });

funnyzak avatar May 17 '23 09:05 funnyzak