I'm attempting to retrieve user data from SoundCloud using this query. Although I can see the successful call in the Chrome network tab after clicking, the JSON response is not reaching the javascript alert as expected. This is preventing me from adding the response to the DOM.
<script src="https://connect.soundcloud.com/sdk/sdk-3.1.2.js"></script>
<script>
SC.initialize({
client_id: '067320efe29b7da263fd8bb093911116',
redirect_uri: 'trofeosbalbino.com/beonerecords'
});
$("#embedTrack").click(function() {
SC.get('/users', {q: 'beonerecords'}, function (users) {
alert(users);
});
});
</script>