取得Windows phone 7的唯一識別碼(IMEI,ANID)

想要取得認證 Windows Phone 7 的識別方法
我推薦用IMEI碼(設備唯一碼)
以及ANID(使用者ID)

首先要宣告
  1. <Capability Name=ID_CAP_IDENTITY_DEVICE/>
  2. <Capability Name=ID_CAP_IDENTITY_USER/>
然後在要取得資料的程式內寫
string DeviceID = (byte[])DeviceExtendedProperties.GetValue("DeviceUniqueId");
string ANID = UserExtendedProperties.GetValue("ANID").Substring(2, 32);

引用來源


留言

熱門文章