System.Collections.Generic.KeyNotFoundException:从 PUSHSHARP 发送推送通知时,字典中不存在给定键
System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary while sending Push Notifiaction from PUSHSHARP
从服务器向 gcm 发送通知时出现异常。
因为 APNS 通知工作正常。
apps["com.app.myAPP"].Gcm.QueueNotification(new GcmNotification
{
RegistrationIds = new List<string> {
deviceId
},
Data = JObject.Parse(msg),
});
在哪里
msg = "{ \"Somekey\" : \"somevalue\" }";
如果有人帮我解决这个问题,我将非常感谢。
发现问题
我没有使用正确的应用名称 apps["com.app.myApp"] .
谢谢
从服务器向 gcm 发送通知时出现异常。 因为 APNS 通知工作正常。
apps["com.app.myAPP"].Gcm.QueueNotification(new GcmNotification
{
RegistrationIds = new List<string> {
deviceId
},
Data = JObject.Parse(msg),
});
在哪里
msg = "{ \"Somekey\" : \"somevalue\" }";
如果有人帮我解决这个问题,我将非常感谢。
发现问题
我没有使用正确的应用名称 apps["com.app.myApp"] .
谢谢