确定 iPhone 和 Android 的唯一蓝牙 MAC 地址

发布于 2024-10-02 18:38:18 字数 146 浏览 3 评论 0原文

是否可以从所述设备上的应用程序中确定 iPhone 和 Android(以及较小程度上的其他智能手机)的唯一蓝牙 MAC 地址?我的 MAC 地址普遍唯一的假设正确吗?

一般性的“是”或“否”会有帮助。 iPhone 或 Android 的示例代码将非常有帮助。

Is it possible to determine the unique bluetooth MAC address for an iPhone and an Android (and to a lesser extent, other smartphones) from within an app on said device? Is my assumption that the MAC address is universally unique correct?

A general yes or no would be helpful. Example code in the case of an iPhone or an Android would be extremely helpful.

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

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

发布评论

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

评论(2

缘字诀 2024-10-09 18:38:18

是的,蓝牙 MAC 地址始终是唯一的。
在 Android 中,您可以在 BluetoothAdaptor 上使用 getAddress() api。
它以字符串形式返回 MAC 地址。

在 iPhone 上,似乎没有公共 API 来读取 MAC 地址,请参阅此 主题

Yes the bluetooth MAC address will always be unique.
In Android you can use the getAddress() api on the BluetoothAdaptor.
It returns the MAC address as a String.

On iPhone it looks like there is no public API to read the MAC address , see this thread

农村范ル 2024-10-09 18:38:18

Android

阅读开发指南的蓝牙部分,特别是 连接设备

关于UUID

通用唯一标识符(UUID)
是一个标准化的 128 位格式
用于唯一标识的字符串ID
信息。 UUID 的要点是
它足够大,你可以
随机选择,不会发生冲突。
在这种情况下,它用于唯一地
识别您的应用程序的蓝牙
服务。获取要使用的 UUID
您的应用程序,您可以使用其中之一
上的许多随机 UUID 生成器
web,然后初始化一个 UUID
fromString(字符串)。

Android

Read up on the Bluetooth section of dev guide, specifically Connecting Devices.

About UUID

A Universally Unique Identifier (UUID)
is a standardized 128-bit format for a
string ID used to uniquely identify
information. The point of a UUID is
that it's big enough that you can
select any random and it won't clash.
In this case, it's used to uniquely
identify your application's Bluetooth
service. To get a UUID to use with
your application, you can use one of
the many random UUID generators on the
web, then initialize a UUID with
fromString(String).

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