Search code examples
windows-phone-8push-notificationmpnsdevicetoken

How to get device token id of windows phone for push notification?


I am creating a windows phone 8 app in phone gap + mobile jquery using visual studio 2012. I want to get the device token id from the device for push notifications. Can anyone guide me as to how can I get device token id of windows phone 8?


Solution

  • You can use the DeviceExtendedProperties -

    byte[] myDeviceID = (byte[])Microsoft.Phone.Info.DeviceExtendedProperties.GetValue("DeviceUniqueId");
    string idAsString = Convert.ToBase64String(myDeviceID);