Get User's Followed Artists
GET
/me/following
category-follow
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.spotify.com/me/following?type=' \
--header 'Authorization;'
响应示例响应示例
200 - 示例 1
{
"artists": {
"cursors": {
"after": "string"
},
"href": "string",
"items": [
{
"external_urls": {
"spotify": "string"
},
"followers": {
"href": "string",
"total": 0
},
"genres": [
"string"
],
"href": "string",
"id": "string",
"images": [
{
"height": 0,
"url": "string",
"width": 0
}
],
"name": "string",
"popularity": 0,
"type": "string",
"uri": "string"
}
],
"limit": 0,
"next": "string",
"total": 0
}
}
请求参数
Query 参数
type
必需
artist
is supported.after
可选
limit
可选
Header 参数
Authorization
必需
user-follow-modify
scope.返回响应
修改于 2021-08-02 10:49:34