How can WeChat Mini Programs search nearby ibeacon

for example, how can Mini Program search nearby ibeacon?

//  ibeacon  uuid
wx.startBeaconDiscovery({
    uuids: [],
    success: (res) => {
      wx.onBeaconUpdate((beacons) => {})
    }
})

can I search for a nearby device through Bluetooth api and get the uuid of ibeacon from it? Or is there another way?

Menu