Я пытаюсь показать изображение из Интернета, но оно не работает.
В следующем коде работает только локальное изображение.
const { XmlDocument } = require('@nodert-win10/windows.data.xml.dom');
const {
ToastNotification,
ToastNotificationManager
} = require('@nodert-win10/windows.ui.notifications');
const path = require('path');
const localImage = path.join(__dirname, 'image.jpg');
const webImage = 'http://picsum.photos/360/202?image=11';
const template = `
<toast launch="app-defined-string">
<visual>
<binding template="ToastGeneric">
<image id="1" placement="appLogoOverride" hint-crop="circle" src="${localImage}"/>
<image id="2" placement="hero" src="${webImage}"/>
</binding>
</visual>
</toast>
`;
const xml = new XmlDocument();
xml.loadXml(template);
const toast = new ToastNotification(xml);
const notifier = ToastNotificationManager.createToastNotifier(appId);
notifier.show(toast);
Есть ли возможность получить уведомление Windows 10 Toast, созданное из электронного приложения, которое работает с веб-изображениями?