Soundcloud api: Geo Tag search not working

房东的猫 提交于 2020-01-01 11:15:10

问题


Geo search tags appear not to be working. I have an app that has been running for months with no changes. It broke recently and upon troubleshooting I found that geo tag search, both specific and with wild card, returns no results.

$(document).ready(function() 
    { SC.initialize({  client_id: 'my id here'}); 
    SC.get("/tracks", {limit: 200, tags: 'geo:lon=-118.*'}, SearchTracks);

    });
var SearchTracks=function Search (tracks){
    for (var key in tracks)  
        {console.log(tracks[key].title+"   "+tracks[key].tag_list);
        }      
};

The same happens when I use any other combo of geo:lat and geo:lon. Can someone from Soundcloud comment?

来源:https://stackoverflow.com/questions/15233098/soundcloud-api-geo-tag-search-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!