我正在制作一些主要由用户驱动的应用程序,当然这意味着他们将成为麻烦制造者,他们可能会使用咒骂词输入虚假数据,或者更糟糕的是将有效数据更改为错误数据(即改为发誓的话)
当然会采取措施来遏制这种情况,但最终我希望可以选择禁止某人申请。
我的第一个想法是通过电子邮件地址禁止他们的帐户。我也在想,也许最重要的是禁止他们的设备。
我的问题是,如果他们使用
,我可以在手机上使用哪个唯一IDAndriod
Iphone
Blackberry
Windows Phone 7/8
它有多独特?它可以轻易改变吗?
答案 0 :(得分:1)
对于Windows Phone,您应该可以使用DeviceExtendedProperties。特别是DeviceUniqueId
属性。
请注意,正如他们在那篇文章中所说的那样,如果您使用设备ID来禁止用户,那么同一设备的任何未来用户都将被禁止访问您的应用,即使他们没有做错任何事情。
答案 1 :(得分:1)
有两个标识符可以一起用于标识特定设备和用户。
DeviceUniqueId和WindowsLiveAnonymousId
第一个是设备,如上所述,任何在被禁用户之后使用该设备的人也将被禁止。
WindowsLiveAnonymousId对用户来说是唯一的。我在3个独立的设备上看到了相同的标识符,对于用户LiveId,它总是相同的。
我使用以下两种方法获取这些ID以识别领导者的游戏玩家:
//Note: to get a result requires ID_CAP_IDENTITY_DEVICE
// to be added to the capabilities of the WMAppManifest
// this will then warn users in marketplace
public static byte[] GetDeviceUniqueId()
{
byte[] result = null;
object uniqueId;
if (DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueId))
result = (byte[])uniqueId;
return result;
}
// NOTE: to get a result requires ID_CAP_IDENTITY_USER
// to be added to the capabilities of the WMAppManifest
// this will then warn users in marketplace
public static string GetWindowsLiveAnonymousId()
{
string result = String.Empty;
object anid;
if (UserExtendedProperties.TryGetValue("ANID", out anid))
{
if (anid != null && anid.ToString().Length >= (AnidLength + AnidOffset))
{
result = anid.ToString().Substring(AnidOffset, AnidLength);
}
}
return result;
}
它们被用作:
string deviceUniqueId = String.Empty;
for (int i = 0; i < GetDeviceUniqueId().GetLength(0); i++)
{
deviceUniqueId += GetDeviceUniqueId().GetValue(i);
}
DeviceUniqueIDTextBlock.Text = deviceUniqueId;
WindowsLiveAnonymousIDTextBlock.Text = GetWindowsLiveAnonymousId().ToString(CultureInfo.InvariantCulture);
我去年五月发了一篇关于获取WP7系统信息的帖子。此代码位于此处:http://www.adambenoit.com/applications/system-info-windows-phone/
希望这有帮助。
答案 2 :(得分:0)
所有这些设备都有具有唯一MAC地址的网络接口,根据定义,这些MAC地址是固定的 - MAC地址被刻录到硬件中,并且不能[轻易]欺骗,特别是在移动设备上。我会哈希MAC地址并将其用作密钥。苹果禁止使用UDID,这是iOS上很常见的做法。
答案 3 :(得分:0)
我会使用guid方法。虽然可以通过卸载和重新安装应用程序来规避这一点。尽管如此,还是完美的
How to create a GUID/UUID using the iPhone SDK
如何在Windows Phone上创建GUID http://msdn.microsoft.com/en-us/library/system.guid.newguid(v=vs.95).aspx
如何在Blackberry上创建GUID http://supportforums.blackberry.com/t5/Java-Development/how-to-generate-GUID/td-p/289947