Spotify位置查询返回精度为-1

时间:2013-11-25 03:04:24

标签: spotify

我试图在Spotify应用中对用户进行地理定位。但是,我只从Spotify获取垃圾位置数据。承诺不会失败,但返回精度为-1和纬度/经度为200/200。是否有一些我遗失的许可?有没有人成功整合过这个?

代码:

require([
'$api/models',
'$api/location',
'$views/image#Image',
'$views/list#List'
], function(models, Location, Image, List) {
'use strict';

var loc = Location.Location.query();
    loc.load('latitude', 'longitude', 'accuracy').done(function() {
    console.log('Found you!', loc.latitude, loc.longitude);

      window.theLocation = loc;
    }).fail(function(loc, error) {
      console.log("I failed!", error)
    });
...

控制台:

Found you! 200 200
theLocation.accuracy
-1
theLocation.latitude
200
theLocation.longitude
200

编辑:请在此处查看我的后续问题:What method(s) can I use for geolocation through a Spotify app?

1 个答案:

答案 0 :(得分:0)

不幸的是,这不受支持,不应该在文档中。我们正在处理文档,一旦更新,它将被删除。