问题
I am using Soundcloud API to retrieve a list a tracks in my windows phone app(using C#). In the .json file of the tracks, I see that there is no image returned for some tracks (i.e. "artwork_url":null).

Is there any way I could receive complete information? Thanks in advance!
回答1:
If its null, its not defined. SC uses on their website a logic to use the default avatar when there is no artwork defined.
Compare with this sketch:
SC.get('/tracks/97617992', function(sound) {
console.log(sound.artwork_url);
$('#result').append('<img src="' +sound.user.avatar_url+'"/>' );
});
http://jsfiddle.net/iambnz/ngtzdx8c/
来源:https://stackoverflow.com/questions/26066587/track-imagesartwork-url-not-returned-by-soundcloud-api