本文介绍了轨道图像(artwork_url)不是的SoundCloud API返回的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的SoundCloud API来检索列表我的Windows手机应用程序一个音轨(使用C#)。在曲目的以.json文件,我看到有一些歌曲没有图像返回(即artwork_url:空)。
(注意:在另一方面,在WP8上的其他第三方应用程序的SoundCloud ,我可以看到各自的图像沿着相同的轨迹。)

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).(NOTE: On the other hand, in other 3rd party Soundcloud apps on WP8, I can see the same tracks along with their respective images.)

有什么办法,我可以得到完整的信息?在此先感谢!

Is there any way I could receive complete information? Thanks in advance!

推荐答案

如果其为null,它没有定义。
SC在其网站上使用的逻辑来使用默认的头像时,有没有定义的艺术作品

If its null, its not defined. SC uses on their website a logic to use the default avatar when there is no artwork defined.

本草图比较:

SC.get('/tracks/97617992', function(sound) {
console.log(sound.artwork_url);
$('#result').append('<img src="' +sound.user.avatar_url+'"/>' );
});

这篇关于轨道图像(artwork_url)不是的SoundCloud API返回的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 09:10