Questions tagged [eddystone-url]

The Eddystone-URL frame broadcasts a URL using a compressed encoding format in order to fit more within the limited advertisement packet.

Once decoded, the URL can be used by any client with access to the internet. For example, if an Eddystone-URL beacon were to broadcast the URL https://goo.gl/Aq18zF, then any client that received this packet could choose to visit that url.

The Eddystone-URL frame forms the backbone of the Physical Web, an effort to enable frictionless discovery of web content relating to one’s surroundings. Eddystone-URL incorporates all of the learnings from the UriBeacon format from which it evolved.

57 questions
0
votes
1 answer

Sending Eddystone UID packet via hcitool

I'm trying to send Eddystone UID packets with my hcitool but I cannot find it via my BLE scanner(I can find another Eddystone UID beacons around with my BLE scanner and also I can find my Eddystone URLthat has been sent with my hcitool). my command:…
fafa92
  • 143
  • 1
  • 12
0
votes
1 answer

Is it possible to restrict the distance and duration of an eddystone URL being broadcast?

Is it possible to restrict the distance and duration of an eddystone URL being broadcast? I've been trying using the https://github.com/don/node-eddystone-beacon library, but even after I terminate the script, the device keeps broadcasting the url.…
Daniel
  • 34,125
  • 17
  • 102
  • 150
0
votes
1 answer

How to format URL from Eddystone in C#

We are trying to read the data of a EddyStone beacon, so we can do something with the URL. However, when formatting we keep getting ???goo.gl/.. We wrote some code to log the data in the received bluetooth data. private void…
Stefan
  • 2,098
  • 2
  • 18
  • 29
0
votes
1 answer

Tap/NFC-like Eddystone Experience

(how) Is it possible to have the Eddysone-URL provide functionality, similar to NFC, that would have the user only within a close proximity be able to get the URL? I've been testing using the eddystone-beacon library on the Intel Bluetooth 4 enabled…
Daniel
  • 34,125
  • 17
  • 102
  • 150
0
votes
2 answers

Cannot find or register Proximity Beacons(ODYSSEY PROXIMITY BEACON)

I am new to beacons and I have a pair of ODYSSEY PROXIMITY BEACON(Eddystone) and I tried to register it with Beacons Tool. But I cant find my beacons in this application. But I was able to find these beacons in similar other apps but there is no way…
Vishnu M Menon
  • 1,459
  • 2
  • 19
  • 34
0
votes
1 answer

Android 6.0.1 eddystone beacon stopped scanning

My eddystone beacon application was perfectly working on Android 5.0 but after updating to Android 6.0.1 it is not scanning at all. Whereas same app is working on another phone having 5.0 version. I have search on internet, found that there were…
0
votes
2 answers

How does eddystone-url works?

Recently, I have just get an eddystone-url device and I can see the device from my android 4.4 phone using app like beacon scanner. From my understanding eddystone-url doesn't need an app for it to work. I have chrome installed on my phone but I…
user1995781
  • 19,085
  • 45
  • 135
  • 236
0
votes
1 answer

Allow access webapp only from eddystone url

Is there a safe way to give access to the webapp only for people who come together through Eddystone url? I know that I can use some of get parameters and handle them on server side but it not good enough.
miru87
  • 456
  • 1
  • 3
  • 13
0
votes
2 answers

Requirements for eddystone endpoint url

Are there any requirements for the webpage used as an eddystone URL? I'm having issues getting an eddystone to broadcast a particular URL (sorry I can't share the URL). It's on https and its a .co TLD, should that make any difference? If I change…
lazybloke
  • 395
  • 1
  • 3
  • 9
0
votes
0 answers

Eddystone Android never called didExitRegion

I am getting same issue even after setting the scan interval didExitRegion is never called. I am using eddystone google beacon on Android and I am running beacon scanning function in android service. My code for beacon is like below: Beacon…
0
votes
1 answer

Eddystone for internal URLs

I programmed a service for the teachers of a school a tool which they can use to automate their classroom. For easier access, i want to implement authentication via URL. The teacher WLAN is on a seperate subnet than the others. The URL is a…
0
votes
1 answer

AltBeacon - Problems with Eddystone-URL transmitting and Chrome Physical Web

I was trying to transmit Eddystone-URL using this code: try { byte[] urlBytes = UrlBeaconUrlCompressor.compress("http://google.com"); Identifier encodedUrlIdentifier = Identifier.fromBytes(urlBytes, 0, urlBytes.length, false); …
radzio
  • 2,862
  • 4
  • 26
  • 35
0
votes
1 answer

How to transmit an Eddystone Beacon with Url using Altbeacon Library for Android

I am able to run the examples mentioned on the Github site of the Altbeacon library for Android for transmitting an Altbeacon. This works perfectly on my phone wherein I am able to transmit an Altbeacon and detect it via another phone. I need to…
Rajiv Singh
  • 233
  • 1
  • 2
  • 8
0
votes
1 answer

Will all Eddystone™ capable beacons support URL transmission?

I'm new to this beacon technology. I want to use this technology. I did some R&D on this and came to know that Estimote ,RadiusNetworks and some other are we can use. But now I want to take a Beacon which will support most of the concepts like…
shobhan
  • 1,460
  • 2
  • 14
  • 28
0
votes
0 answers

is it possible to make an application supporting both of Eddystone-URL and Eddystone-Uid?

I'm trying to build an application supporting both of Eddystone-URL and Eddystone-Uid. is it possible ? because with Eddystone-uid only my app work perfectly, and with Eddystone-Url only same thing, but when I put them both in the same app, I get…