我正在使用PushSharp庫。我能夠看到示例代碼中的deviceToken https://github.com/Redth/PushSharp使用pushsharp獲取推送通知的android的註冊ID
任何人都可以幫助我如何得到它嗎? PushSharp示例代碼不會解釋
apnsBroker.QueueNotification (new ApnsNotification {
DeviceToken = deviceToken,
Payload = JObject.Parse ("{\"aps\":{\"badge\":7}}")
同爲Android,我怎樣才能獲得註冊ID的
foreach (var regId in MY_REGISTRATION_IDS) {
// Queue a notification to send
gcmBroker.QueueNotification (new GcmNotification {
RegistrationIds = new List<string> {
regId
},
Data = JObject.Parse ("{ \"somekey\" : \"somevalue\" }")
});
}
我通過它使用的WebAPI開發了我的服務層發送推送通知。請建議。
。注意到這個帖子實際上是以前存在的。我在答案中添加了。下次,請避免刪除重新發布問題。花點時間讓其他用戶看到它,並給出看到其他新問題的機會。乾杯! :) –
謝謝AL。是。將遵循:) – Vicky
設備令牌必須在客戶端檢索,然後作爲POST發送到您的webapi,爲了做到這一點,您必須使用設備的本地語言,或者如果你想使用Javascript,你會必須使用像Cordova的lib http://cordova.apache.org/docs/en/6.x/guide/platforms/android/index.html。 –