FCM - 以编程方式向用户分段发送推送通知
FCM - 以编程方式向用户分段发送推送通知
这个问题已经有了答案:
我能够从Firebase控制台向单个设备、主题和用户分段发送通知。
我想要向用户分段发送推送通知。我搜索了很多,但我只能得到向单个用户或主题发送通知的脚本,而不能向用户分段发送通知。
我尝试了下面的代码
var client = new RestClient("https://fcm.googleapis.com/fcm/send"); var request = new RestRequest(Method.POST); request.AddHeader("content-type", "application/json"); request.AddHeader("authorization", "key=mykey"); request.AddParameter("application/json", "\n\n{\"to\" : \"user-segment-name\",\n\"notification\" : {\n \"body\" : \"test message\",\n \"title\" : \"Portugal vs. Denmark\"\n },\n \"priority\":\"high\"\n}", ParameterType.RequestBody); IRestResponse response = client.Execute(request); Response.Write(response.Content);
我得到了以下的响应
{"multicast_id":5837227475989925972,"success":0,"failure":1,"canonical_ids":0,"results":[{"error":"InvalidRegistration"}]}
admin 更改状态以发布 2023年5月20日