proximityapi

Initialize a NDEF tag on Windows 10 Desktop

我与影子孤独终老i 提交于 2019-12-14 02:23:59
问题 I'm trying to initialize a new Mifare Classic Tag to the DNEF format, readable by the Proximity API. According to Microsoft, the proximity API is capable to initialize a mifare classic tag to a NDEF format if needed (as described here and here). But, using this line of code to publish the message: proximityDevice.PublishBinaryMessage("NDEF:WriteTag", ndef.ToByteArray().AsBuffer(), MessageTransmittedHandler); don't initialize the TAG and write anything, just works on a pre-formatted NDEF tag

Configure Google Nearby Notification API to use Facebook App Intent

血红的双手。 提交于 2019-12-11 04:29:45
问题 Is it possible to pass Facebook's Android App intent while subscribing for Nearby Notification on Google Beacon Dashboard? I want to open my company's Facebook Page on the Facebook App when in proximity of the Beacon. In case it can be done, what should be passed in intent and scheme parameters? 回答1: In order to make this happen, you need to add a Nearby notification attachement url to your beacon. You can read an overview of how to do this here. Here's an example of constructing a the url to

Find Eddystone Beacons using Nearby Google API

孤街醉人 提交于 2019-11-29 12:46:52
I attached data to Eddystone Beacons using The Proximity Beacon API. I want to fetch the Beacon attachments using Nearby Messages API. I followed the steps mentioned at https://developers.google.com/nearby/messages/android/get-beacon-messages . But I am not able to read Beacon attachments. The onFound() method is not getting called Check the following... Set a callback on the response to subscribe and call startResolutionForResult on the Status object if the Status was APP_NOT_OPTED_IN . See github example Make sure you've enabled the Nearby API in the Developer Console for your app. Step 3

Find Eddystone Beacons using Nearby Google API

£可爱£侵袭症+ 提交于 2019-11-28 06:10:53
问题 I attached data to Eddystone Beacons using The Proximity Beacon API. I want to fetch the Beacon attachments using Nearby Messages API. I followed the steps mentioned at https://developers.google.com/nearby/messages/android/get-beacon-messages. But I am not able to read Beacon attachments. The onFound() method is not getting called 回答1: Check the following... Set a callback on the response to subscribe and call startResolutionForResult on the Status object if the Status was APP_NOT_OPTED_IN .