【发布时间】:2019-11-22 19:43:16
【问题描述】:
我尝试使用registration_ids 向设备组发送消息。
这是我的代码:
List<String> tokens=["token1","token2"];
final url='https://fcm.googleapis.com/fcm/send';
http.post(url,headers:{
"Accept": "application/json",
"Authorization":"key=mykey"
,"project_id":"proID"
},
body:
{
"registration_ids" :tokens ,
"collapse_key" : "type_a",
"notification" : {
"body" : "Body of Your Notification",
"title": "Title of Your Notification"
}
}
当应用程序运行时显示此错误:
发生了异常。 _CastError(类型'List'不是类型转换中类型'String'的子类型)
如何解决?
【问题讨论】:
标签: android flutter dart firebase-cloud-messaging