使用Firebase发送推送通知

时间:2019-08-22 15:06:13

标签: c# firebase xamarin push-notification firebase-cloud-messaging

我想通过程序将推送通知发送到我的应用/设备。

我尝试了官方的火力基地方式,但是没有用。 没有错误,只是没有将其发送到我的设备。 我可以通过firebase在线门户将其发送给该主题。

        FirebaseApp.Create(new AppOptions()
        {
            Credential = GoogleCredential.FromFile("odysys-d3-statistik-app-firebase-adminsdk-dmiyf-0292d81b4c.json"),
        });



        var topic = "all";




        var message = new FirebaseAdmin.Messaging.Message()
        {
            Data = new Dictionary<string, string>()
            {
                { "score", "850" },
                { "time", "2:45" },
            },
            Topic = topic,
        };

        string response = await FirebaseMessaging.DefaultInstance.SendAsync(message);
        MessageBox.Show("Successfully sent message: " + response);

此代码有什么问题?预先感谢

0 个答案:

没有答案