我正在使用 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
关于从哪里开始寻找的任何想法?
谢谢,