{
"title": "测试音乐",
"description": "这是一首测试音乐2",
"url": "http://localhost:9000/uploads/permanent/1735457794701_local_b684f631.mp3",
"cover_image": "http://localhost:9000/uploads/permanent/1735457752744_local_d3b5d749.jpg",
"genre": "流行",
"language": "中文",
"lyrics": "这是歌词...",
"lyrics_type": "embedded",
"track_number": 1,
"disc_number": 1,
"is_explicit": false,
"is_featured": true,
"artist_id": 1,
"album_id": 2,
"tags": [
"流行",
"2023"
]
}
curl --location --request POST 'http://localhost:9000/api/admin/music' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcm5hbWUiOiJhZG1pbiIsInJvbGUiOiJzdXBlcmFkbWluIiwiaWF0IjoxNzM1NTQ4ODQxLCJleHAiOjE3MzU2MzUyNDF9.MHuuZkOam9wBcDqYVKyP8KXDnzghWBg0iMuXabquUv8' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "测试音乐",
"description": "这是一首测试音乐2",
"url": "http://localhost:9000/uploads/permanent/1735457794701_local_b684f631.mp3",
"cover_image": "http://localhost:9000/uploads/permanent/1735457752744_local_d3b5d749.jpg",
"genre": "流行",
"language": "中文",
"lyrics": "这是歌词...",
"lyrics_type": "embedded",
"track_number": 1,
"disc_number": 1,
"is_explicit": false,
"is_featured": true,
"artist_id": 1,
"album_id": 2,
"tags": [
"流行",
"2023"
]
}'
{"code":200,"message":"音乐创建成功","data":{"id":9,"title":"测试音乐","url":"http://localhost:9000/uploads/permanent/1735457794701_local_b684f631.mp3","cover_image":"http://localhost:9000/uploads/permanent/1735457752744_local_d3b5d749.jpg","genre":"流行","language":"中文","lyrics_type":"embedded","track_number":1,"disc_number":1,"is_explicit":false,"is_featured":true,"artist_id":1,"album_id":1,"tags":["流行","2023"],"duration":0},"success":true}