检索信标附件near beacon api

时间:2016-04-07 08:54:36

标签: android beacon eddystone google-beacon-platform

目前,我已向Google Proximity Beacon API注册了信标。他们是埃迪斯通信标。我还可以检索信标的数据并添加附件(我认为)。我遇到的问题是检索这些附件。

我使用以下网站检索附件,但我收到了404错误。 https://labs.ribot.co.uk/exploring-google-eddystone-with-the-proximity-beacon-api-bc9256c97e05#.rndagn22e

<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
<p><b>404.</b> <ins>That’s an error.</ins>
<p>The requested URL <code>/v1beta/beaconName/attachments/</code> was not found on this server.  
<ins>That’s all we know.</ins>

我使用GET方法来检索数据。我的应用程序使用Volley JsonObjectRequest发送带有令牌的请求。这是我正在使用的网址:

获取https://proximitybeacon.googleapis.com/v1beta1/beaconName/attachments

如果我使用GET方法检索信标,我也不会收到附件(如果它还应该返回附件,我无法在任何地方找到它。)

我是否可能使用错误的网址?还有其他人遇到同样的问题吗?

修改的: 我使用所需的查询参数更新了我的网址:

https://proximitybeacon.googleapis.com/v1beta/beaconName/attachments?namespacedType=*/*

在请求标头中,我放置了从先前请求(oAuth2.0)检索到的令牌。这里没有涉及API密钥。除了检索附件之外,用于更新,注册和检索信标的所有其他方法都有效。

解决 URL中缺少1个

https://proximitybeacon.googleapis.com/v1beta1/beaconName/attachments?namespacedType=*/*

1 个答案:

答案 0 :(得分:0)

https://proximitybeacon.googleapis.com/v1beta/beaconName/attachments?namespacedType=*/*

上面的网址在v1beta之后缺少1,它应该是v1beta1,如下面的de URL所示。

https://proximitybeacon.googleapis.com/v1beta1/beaconName/attachments?namespacedType=*/*