- Request:
method: GET path: http://127.0.0.1:8080/api/info
- Response:
{ "app_name": "BiliLive-go", "app_version": "0.5.0-rc.3-3-g31ceeda", "build_time": "2020-05-05_01:07:16", "git_hash": "31ceeda8f508ba5546cfdefef5f3945828a87651", "pid": 33295, "platform": "darwin/amd64", "go_version": "go1.14.2" }
- Request:
method: GET path: http://127.0.0.1:8080/api/lives
- Response:
[ { "id": "212d9c98c7b376b730d4336bb49f6d3f", "live_url": "https://live.bilibili.com/14917277", "platform_cn_name": "哔哩哔哩", "host_name": "湊-阿库娅Official", "room_name": "【B站限定】棉花糖&唱歌!!!!", "status": false, "listening": true, "recording": false }, { "id": "63dc965c77d3d81058c92c3e38822256", "live_url": "https://live.bilibili.com/11588230", "platform_cn_name": "哔哩哔哩", "host_name": "白上吹雪Official", "room_name": "古老niconico老人会with☆乐园", "status": false, "listening": true, "recording": false }, { "id": "dfb964a56725bbad165cb9ea1ef8ac5b", "live_url": "https://live.bilibili.com/1030", "platform_cn_name": "哔哩哔哩", "host_name": "怕上火暴王老菊", "room_name": "直播做饭", "status": false, "listening": true, "recording": false } ]
- Request:
method: GET path: http://127.0.0.1:8080/api/lives/212d9c98c7b376b730d4336bb49f6d3f
- Response:
{ "id": "212d9c98c7b376b730d4336bb49f6d3f", "live_url": "https://live.bilibili.com/14917277", "platform_cn_name": "哔哩哔哩", "host_name": "湊-阿库娅Official", "room_name": "【B站限定】棉花糖&唱歌!!!!", "status": false, "listening": true, "recording": false }
- Request:
method: POST path: http://127.0.0.1:8080/api/lives body: [ { "url": "https://live.bilibili.com/14917277", "listen": true } ]
- Response:
[ { "id": "212d9c98c7b376b730d4336bb49f6d3f", "live_url": "https://live.bilibili.com/14917277", "platform_cn_name": "哔哩哔哩", "host_name": "湊-阿库娅Official", "room_name": "【B站限定】棉花糖&唱歌!!!!", "status": false, "listening": true, "recording": false } ]
- Request:
method: DELETE path: http://127.0.0.1:8080/api/lives/212d9c98c7b376b730d4336bb49f6d3f
- Response:
{ "err_no": 0, "err_msg": "", "data": "OK" }
- Request:
method: GET path: http://127.0.0.1:8080/api/lives/212d9c98c7b376b730d4336bb49f6d3f/start
- Response:
{ "id": "212d9c98c7b376b730d4336bb49f6d3f", "live_url": "https://live.bilibili.com/14917277", "platform_cn_name": "哔哩哔哩", "host_name": "湊-阿库娅Official", "room_name": "【B站限定】棉花糖&唱歌!!!!", "status": false, "listening": true, "recording": false }
- Request:
method: GET path: http://127.0.0.1:8080/api/lives/212d9c98c7b376b730d4336bb49f6d3f/stop
- Response:
{ "id": "212d9c98c7b376b730d4336bb49f6d3f", "live_url": "https://live.bilibili.com/14917277", "platform_cn_name": "哔哩哔哩", "host_name": "湊-阿库娅Official", "room_name": "【B站限定】棉花糖&唱歌!!!!", "status": false, "listening": false, "recording": false }
- Request:
method: GET path: http://127.0.0.1:8080/api/config
- Response:
{ "RPC": { "Enable": true, "Bind": "127.0.0.1:8080" }, "Debug": false, "Interval": 15, "OutPutPath": "/tmp", "Feature": { "UseNativeFlvParser": false }, "LiveRooms": null }
- Request:
method: PUT path: http://127.0.0.1:8080/api/config
- Response:
{ "err_no": 0, "err_msg": "", "data": "OK" }
- Request:
method: GET path: http://127.0.0.1:8080/api/raw-config
- Response:
{ "config": "rpc:\n enable: true\n bind: 0.0.0.0:8080\ndebug: false\ninterval: 15\nout_put_path: ./\nfeature:\n use_native_flv_parser: false\nlive_rooms:\n- url: https://www.huya.com/991111\n is_listening: false\nout_put_tmpl: \"\"\nvideo_split_strategies:\n on_room_name_changed: false\n max_duration: 0s\ncookies:\n live.douyin.com: name1=qwer;name2=asdf;aaaa\non_record_finished:\n convert_to_mp4: true\n delete_flv_after_convert: false\ntimeout_in_us: 50000000\n" }
- Request:
method: PUT path: http://127.0.0.1:8080/api/raw-config body: { "config": "rpc:\n enable: true\n bind: 0.0.0.0:8080\ndebug: false\ninterval: 15\nout_put_path: ./\nfeature:\n use_native_flv_parser: false\nlive_rooms:\n- url: https://www.huya.com/991111\n is_listening: false\nout_put_tmpl: \"\"\nvideo_split_strategies:\n on_room_name_changed: false\n max_duration: 0s\ncookies:\n live.douyin.com: name1=qwer;name2=asdf;aaaa\non_record_finished:\n convert_to_mp4: true\n delete_flv_after_convert: false\ntimeout_in_us: 50000000\n" }
- Response:
{ "err_no": 0, "err_msg": "", "data": "OK" }