-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (122 loc) · 3.75 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<script>
const data = {
items: [
{
added_at: "2023-10-04T03:52:47Z",
added_by: {
external_urls: {
spotify: "https://open.spotify.com/user/11173190705",
},
id: "11173190705",
type: "user",
uri: "spotify:user:11173190705",
},
is_local: false,
primary_color: null,
sharing_info: {
share_id: "lwTvjnlOTle8FcRMekOPoQ",
share_url:
"https://open.spotify.com/track/2DLrgv7HhJanCuD8L9uJLR?si=lwTvjnlOTle8FcRMekOPoQ",
uri: "spotify:track:2DLrgv7HhJanCuD8L9uJLR",
},
track: {
album: {
album_type: "album",
artists: [
{
external_urls: {
spotify:
"https://open.spotify.com/artist/1EowJ1WwkMzkCkRomFhui7",
},
id: "1EowJ1WwkMzkCkRomFhui7",
name: "RADWIMPS",
type: "artist",
uri: "spotify:artist:1EowJ1WwkMzkCkRomFhui7",
},
],
external_urls: {
spotify: "https://open.spotify.com/album/4wfg3RVjMHViARKbdbjURd",
},
id: "4wfg3RVjMHViARKbdbjURd",
images: [
{
height: 640,
url: "https://i.scdn.co/image/ab67616d0000b273301d4a2f8f0b3a016878469b",
width: 640,
},
{
height: 300,
url: "https://i.scdn.co/image/ab67616d00001e02301d4a2f8f0b3a016878469b",
width: 300,
},
{
height: 64,
url: "https://i.scdn.co/image/ab67616d00004851301d4a2f8f0b3a016878469b",
width: 64,
},
],
is_playable: true,
name: "君の名は。",
release_date: "2016-11-16",
release_date_precision: "day",
total_tracks: 27,
type: "album",
uri: "spotify:album:4wfg3RVjMHViARKbdbjURd",
},
artists: [
{
external_urls: {
spotify:
"https://open.spotify.com/artist/1EowJ1WwkMzkCkRomFhui7",
},
id: "1EowJ1WwkMzkCkRomFhui7",
name: "RADWIMPS",
type: "artist",
uri: "spotify:artist:1EowJ1WwkMzkCkRomFhui7",
},
],
disc_number: 1,
duration_ms: 285880,
episode: false,
explicit: false,
external_ids: {
isrc: "JPPO01617097",
},
external_urls: {
spotify: "https://open.spotify.com/track/2DLrgv7HhJanCuD8L9uJLR",
},
id: "2DLrgv7HhJanCuD8L9uJLR",
is_local: false,
is_playable: true,
linked_from: {
external_urls: {
spotify: "https://open.spotify.com/track/6fmowbDHpvQ1qw7lp22Xhi",
},
id: "6fmowbDHpvQ1qw7lp22Xhi",
type: "track",
uri: "spotify:track:6fmowbDHpvQ1qw7lp22Xhi",
},
name: "Zenzenzense - movie ver.",
popularity: 65,
preview_url:
"https://p.scdn.co/mp3-preview/b07586c201cd3fbd336c84fb14d433c75edf52a3?cid=d8a5ed958d274c2e8ee717e6a4b0971d",
track: true,
track_number: 8,
type: "track",
uri: "spotify:track:2DLrgv7HhJanCuD8L9uJLR",
},
video_thumbnail: {
url: null,
},
},
],
limit: 1,
next: true,
offset: 0,
previous: null,
total: 8,
};
console.log(data.items[0].track.album.name);
console.log(data.items[0].track.preview_url);
console.log(typeof "albumName");
</script>