如何在您的网络推送通知中发送来自 back-end 的图像?
How to send image from back-end in your web push notifications?
我正在使用 web-push 库通过节点服务器发送推送通知。目前,我只能从 back-end 发送标题。有什么方法可以从后端发送图像吗?
这是发送带有图像的通知的示例函数:
function sendPushNotification(req, res) {
const subscriptionId = req.params.id;
const pushSubscription = subscriptions[subscriptionId];
webpush
.sendNotification(
pushSubscription,
JSON.stringify({
title: "your title",
text: "your text",
image: "path/to/image.jpg",
tag: "new...",
url: "/your-url.html"
})
)
.catch(err => {
console.log(err);
});
res.status(202).json({});
}
这来自 Lorenzo Spyna,解释了如何在 github
的 tutorial and you can see all code in this project 中做到这一点
我正在使用 web-push 库通过节点服务器发送推送通知。目前,我只能从 back-end 发送标题。有什么方法可以从后端发送图像吗?
这是发送带有图像的通知的示例函数:
function sendPushNotification(req, res) {
const subscriptionId = req.params.id;
const pushSubscription = subscriptions[subscriptionId];
webpush
.sendNotification(
pushSubscription,
JSON.stringify({
title: "your title",
text: "your text",
image: "path/to/image.jpg",
tag: "new...",
url: "/your-url.html"
})
)
.catch(err => {
console.log(err);
});
res.status(202).json({});
}
这来自 Lorenzo Spyna,解释了如何在 github
的 tutorial and you can see all code in this project 中做到这一点