Firebase消息传递,仅发送一次通知

时间:2019-10-06 18:28:08

标签: c# firebase xamarin

如何仅通过Firebase消息发送通知?当特定条件为真时,我正在发送通知。例如,如果x等于y。问题在于,此条件在x时间内可能为真。这将导致应用程序在条件仍然为真时继续发送通知。因此,我想知道一种方法,如何检查消息是否唯一,例如,仅发送一次通知。这是我的代码(带有示例条件):

if(x == (2*y))
{
    SendNotification("", x.ToString(), y.ToString());
}

string SendNotification(string DeviceToken, string title, string msg)
{
    var result = "-1";
    var httpWebRequest = (HttpWebRequest)WebRequest.Create(webAddr);
    httpWebRequest.ContentType = "application/json";
    httpWebRequest.Headers.Add(string.Format("Authorization: key={0}", serverKey));
    httpWebRequest.Headers.Add(string.Format("Sender: id={0}", senderId));
    httpWebRequest.Method = "POST";

    var payload = new
    {
        to = "/topics/",
        priority = "high",
        content_available = true,
        notification = new
        {
            body = msg,
            title = title
        },
    };
    var serializer = new JavaScriptSerializer();
    using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))
    {
        string json = serializer.Serialize(payload);
        streamWriter.Write(json);
        streamWriter.Flush();
    }
    var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();
    using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
    {
        result = streamReader.ReadToEnd();
    }
    return result;
}

编辑:

我忘了提一提,可能有2个彼此不同的x和y值紧随其后的唯一通知。因此,创建布尔值以检查发送通知是否成功。

1 个答案:

答案 0 :(得分:0)

似乎这个问题根本与Xamarin无关。

您从服务器应用程序发送通知,对不对?因此,如果您知道只需要在x == y时发送一次通知,则设置一个布尔标志。或创建一个state并将其保存在数据库中。