我正在使用asp.net mvc制作实时聊天应用程序,并通过pusher发送消息。但是我知道如何获取推送程序的通知。 帮我解决这个问题,并告诉我如何从推送程序中获取通知。 在这里,我提供了用于使我的聊天应用程序实时的代码。
var options = new PusherOptions();
options.Cluster = "ap2";
var pusher = new Pusher("app_id", "app_key", "", options);
ITriggerResult result = await pusher.TriggerAsync("asp_channel",
"asp_event", new { message = message + "___________" +
DateTime.Now.ToShortDateString() + " | " +
DateTime.Now.ToShortTimeString(), name = "\n" + SN });