Get User's Own Created Playlists
Request
GET /user/playlists?offset=0&limit=11
Parameter
HEADER PARAMETER | VALUE |
---|---|
Content-Type | Required Set to application/json |
Accept-Language | Such as zh-CN,en-US... default en |
app_id | Required The app ID provided to you by Boomplay when you register your application. |
Authorization | Required Access Token (The access token from ImplicitGrant or RefreshToken ) |
REQUEST PARAMETER | VALUE |
---|---|
offset | Required integer |
limit | Required integer |
Responses Body
Body
code (integer) required
desc (string)
counts (integer) count of data
data (object)playlist_id (integer) The Boomplay ID for the playlist.
playlist_title (string) The Boomplay title for the playlist.
privacy (string) Privacy Status Public / Private
web_url (string) web url.
mobile_url (string) mobile url.
artwork objectwidth (integer) image width
height (integer) image height
url (string) cover
Request Sample
GET /user/playlists?offset=0&limit=11
Authorization: ${authorization}
app_id: ${app_id}
Host: openapi.boomplay.com
Response Example
{
"desc": null,
"code": 0,
"counts": 1,
"data": [
{
"playlist_id": 40002667,
"playlist_title": "野花的歌单",
"privacy": "Public",
"web_url": "https://test.boomplay.com/playlists/40002667?srModel=openapi_hb1",
"mobile_url": "https://test.boomplay.com/share/playlist/40002667?srModel=openapi_hb1",
"artwork": {
"width": 464,
"height": 464,
"url": "https://testsource.boomplaymusic.com/test_group10/M00/03/11/dd9d6d18f14f40e0928cf3a65ba99c10_464_464.jpg"
}
}
]
}