我可能在這裏提出一個非常基本的問題,但是如何在Android中獲取PushSharp的設備ID?我的設置是VB.net,我們將發送到大量不同的Android設備。 這裏繼PushSharp例子是到目前爲止我的代碼:
push.RegisterGcmService(new
GcmPushChannelSettings("YOUR Google API's Console API Access API KEY for Server Apps HERE"));
push.QueueNotification(new GcmNotification().ForDeviceRegistrationId(
"DEVICE REGISTRATION ID HERE")
.WithJson("{\"alert\":\"Hello World!\",
\"badge\":7,\"sound\":\"sound.caf\"}"));
我知道API密鑰是從GCM服務,但哪裏設備註冊ID從何而來? GCM服務的設置是否正確?或者是android設備發送服務器應該保存的東西?
感謝您的幫助。
完美。謝謝! – Kat