44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
|
{
|
||
|
"swagger": "2.0",
|
||
|
"info": {
|
||
|
"contact": {}
|
||
|
},
|
||
|
"paths": {
|
||
|
"/api/v1/bilibili/subtitles": {
|
||
|
"post": {
|
||
|
"description": "获取字幕",
|
||
|
"consumes": [
|
||
|
"application/json"
|
||
|
],
|
||
|
"produces": [
|
||
|
"application/json"
|
||
|
],
|
||
|
"parameters": [
|
||
|
{
|
||
|
"description": "请求参数",
|
||
|
"name": "json",
|
||
|
"in": "body",
|
||
|
"required": true,
|
||
|
"schema": {
|
||
|
"$ref": "#/definitions/main.Request"
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"responses": {}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"definitions": {
|
||
|
"main.Request": {
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"url"
|
||
|
],
|
||
|
"properties": {
|
||
|
"url": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|