The Google's Proximity Beacon API documentation uses Eddystone as an example everywhere:
https://developers.google.com/beacons/proximity/register
However, documentation mentions two more types of beacons, AltBeacon and iBeacon.
If I understand correctly, something like this should be used (adapted from Google's example):
{
"advertisedId": {
"type":"IBEACON",
"id":"base 64 of what???"},
"status":"ACTIVE",
"latLng": {
"latitude": 51.4935657,
"longitude": -0.1465538
}
}
However, what is the acceptable binary format for iBeacon's UUID,Major,Minor (which should be base64'd)?