我正在使用PushSharp库,并且在通过消息发送样本时遇到问题。
我正在使用deviceToken,但是当我尝试通过PushSharp示例向它发送消息时,我收到错误,没有消息被推送到我的iPad。
push.QueueNotification(NotificationFactory.Apple()
.ForDeviceToken("c27d5fc52e4fce7a3dcf2306d984a90179ba0bde443e2c6f6d7399cb02d13ad5")
.WithAlert("1 Alert Text!")
.WithSound("default")
.WithBadge(7));
这是控制台输出
Waiting for Queue to Finish...
Sent: Apple -> {"aps":{"alert":"1 Alert Text!","badge":7,"sound":"default"}}
Queue Finished, press return to exit...
Device Subscription Expired: Apple -> c27d5fc52e4fce7a3dcf2306d984a90179ba0bde44
3e2c6f6d7399cb02d13ad5
关于从何处开始寻找的任何想法?
谢谢,