带密码的网络蓝牙
Web Bluetooth with Password
是否可以连接到支持蓝牙4.0 LE但有密码的蓝牙设备。
我可以从 iphone 连接到设备并打印(仅支持 BTLE)但是当我尝试从 chrome (OSX) / web-bluetooth 连接时不提示我输入密码。我可以 return 一个设备使用:
navigator.bluetooth.requestDevice({name: 'PRINTER'})
但是当我尝试使用
连接时
device.gatt.connect()
承诺永远不会实现。
你能让 device.gatt.connect()
在 Android 上解决吗?
解决问题的最佳方法是按照 https://www.chromium.org/developers/how-tos/file-web-bluetooth-bugs
中的说明提交 Chromium 错误
网络蓝牙不支持蓝牙 4.0 的安全简单配对 (SSP) / Pin 代码。
我通过禁用密码并在蓝牙 CG 中发布 SSP 请求解决了这个问题。
是否可以连接到支持蓝牙4.0 LE但有密码的蓝牙设备。
我可以从 iphone 连接到设备并打印(仅支持 BTLE)但是当我尝试从 chrome (OSX) / web-bluetooth 连接时不提示我输入密码。我可以 return 一个设备使用:
navigator.bluetooth.requestDevice({name: 'PRINTER'})
但是当我尝试使用
连接时device.gatt.connect()
承诺永远不会实现。
你能让 device.gatt.connect()
在 Android 上解决吗?
解决问题的最佳方法是按照 https://www.chromium.org/developers/how-tos/file-web-bluetooth-bugs
中的说明提交 Chromium 错误网络蓝牙不支持蓝牙 4.0 的安全简单配对 (SSP) / Pin 代码。
我通过禁用密码并在蓝牙 CG 中发布 SSP 请求解决了这个问题。