如何通过phonegap获取手机的MAC地址?

发布于 2024-12-23 12:36:14 字数 70 浏览 0 评论 0 原文

我可以通过phonegap javascript获取android和iphone的MAC地址吗?

我该怎么做?

Is it possible for me to obtain the MAC address of android and iphones via phonegap javascript?

How would I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

奶茶白久 2024-12-30 12:36:14

您应该考虑使用 device.uuid,它返回通用唯一标识符。这可能是唯一标识设备的最佳方式,并且几乎适用于任何平台。有关详细信息,请参阅 PhoneGap API 文档

更新:似乎这个解决方案在iOS5+下不再起作用。

You should consider using device.uuid, which returns an Universally Unique Identifier. It's probably the best way to uniquely identify a device and it works on almost any platform. Consult the PhoneGap API Docs for more information.

Update: It seems that this solution no longer works under iOS5+.

木落 2024-12-30 12:36:14

https://github.com/mohamed-salah/MacAddress/tree/6869bad83906a760cb81bdc5e3c349e197cd215d

将在 2.5.0、2.7.0、2.9.0、3.0.0、3.1.0 中工作, 3.2.0、3.3.0

https://github.com/mohamed-salah/MacAddress/tree/6869bad83906a760cb81bdc5e3c349e197cd215d

will work in 2.5.0, 2.7.0, 2.9.0, 3.0.0, 3.1.0, 3.2.0, 3.3.0

情绪少女 2024-12-30 12:36:14

是的,如上所述,该解决方案不再按预期工作。虽然 ID 是唯一的,但它会随着每次重新安装应用程序而发生变化。我正在寻找一种方法,让我的应用程序在用户设备上的生命周期内拥有一个唯一的恒定标识符,无论他们是否卸载/安装,至少该 ID 对于该用户来说始终是相同的。我在这里找到了一个安全的解决方案。

https://github.com/blackpixel/BPXLUUIDHandler

我最终查看了 wizUtils 插件并使用一位朋友的帮助实际上做到了这一点,所以我可以将它用作phone-gap中的实际插件,就像预构建的wizUtils方法之一一样使用它,并且它有效!

更新 06/13/2019

对于那些使用 ionic4 的用户,请查看(做同样的事情)

https://ionicframework.com/docs/native/unique-device-id

Yes as stated above the solution no longer works as desired. Though unique, the ID will change with each re-install of your app. What I was looking for was a way I could have a single constant unique identifier for the life of my app on the user device, regardless if they uninstall/install at least the ID will always be the same for that user. I found a secure solution here.

https://github.com/blackpixel/BPXLUUIDHandler

I ended up looking at the wizUtils plugin and with the help of a friend actually made it so I could use it as an actual plugin in phone-gap using it like one of the prebuilt wizUtils methods and it works!

Update 06/13/2019

For those using ionic4 check out (does the same thing)

https://ionicframework.com/docs/native/unique-device-id

十六岁半 2024-12-30 12:36:14

正如 Eskim0 指出的,由于 iOS 的更改,device.uuid 将不会返回持久唯一标识符。如果用户卸载该应用程序,您将获得一个全新的标识符。

对于大多数试图唯一标识设备的人来说,无论应用程序是否卸载,ID 都必须相同。

我的想法是在 deviceReady 上获取带有良好盐的 MAC 地址 sha256,并查看它是否存在于我的数据库中。

As Eskim0 pointed out, device.uuid won't return a persistent unique identifier because of changes to iOS. If the user uninstalls the app you will get a brand new identifier.

For most people trying to uniquely identify the device, the ID must be the same whether the app is uninstalled or not.

My thought were to get the MAC address sha256 with a nice salt on deviceReady and see if it exists in my database.

又爬满兰若 2024-12-30 12:36:14

API 中没有任何内容可以支持这一点。假设您可以从 Android 或 iPhone 获取此信息,您需要编写自己的插件来完成此操作。

There's nothing in the API that would support this. Assuming you could get this information from Android or the iPhone, you'll need to write your own plugin to do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文