z***@qq.com
z***@qq.com
  • 发布:2024-11-20 23:22
  • 更新:2024-11-20 23:22
  • 阅读:13

使用push2.0 云函数指定用户推送的消息全部用户可收到?

分类:uni-app

这是个什么情况

exports.main = async (event) => {    
    let obj = JSON.parse(event.body)    
    const res = await uniPush.sendMessage({    
        "push_clientid": obj.clientid, // 设备id,支持多个以数组的形式指定多个设备,如["cid-1","cid-2"],数组长度不大于1000    
        "title": obj.title, // 标题    
        "content": obj.content, // 内容    
        "payload": obj.payload, // 数据    
        "force_notification": true, //创建通知栏通知  

    })    
    return res;  
};
2024-11-20 23:22 负责人:无 分享
已邀请:

要回复问题请先登录注册