Notificator is a simple program that makes requests to a specific URL in the background, receives a JSON message and displays it in Windows Notification Center for a specific user.
This program was developed with Visual Studio 2017. The following NuGet packages have also been added:
Newtonsoft.Jsonv13.0.1;System.Runtimev4.0.0;System.Runtime.WindowsRuntimev4.0.0;Legacy2CPSWorkaroundv1.0.0;Microsoft.Toolkit.Uwp.Notificationsv7.0.2.
The program has two configurable parameters, which you can set in context menu Settings:
url- URL, which returns a JSON message;interval- Request interval in milliseconds.
The message structure looks like this:
{
"success": true,
"data":
{
"title": "Header",
"date": 1627058574,
"message": "Some message for ...",
"url": "http://somesite.com/"
}
}