我尝试使用C#(Windows窗体)发送推送通知,我做了它,我想要的是向用户刻录的频道发送通知。 她的代码使用C#为所有用户发送简单通知
var parsePush = new ParsePush();
parsePush.Data = new Dictionary<string, object>
{
{"alert", TxtOne.Text},// this is replacement for parsePush.Alert
};
await parsePush.SendAsync();