'use strict';
const uniPush = uniCloud.getPushManager({
appId: "xxxx"
})
exports.main = async (event) => {
return await uniPush.sendMessage({
"push_clientid":'xxxxx',
// "force_notification": true,
"title": 'GGGGG',
"content": '嗷嗷嗷啊',
"payload":{
"text":"哈哈哈哈哈"
}
})
return event;
};
JWJQVQ (作者)
那就是不能搞了,h5在手机浏览器发推送消息?
2023-12-21 09:08