Skip to content

Commit

Permalink
🎨: Update Version Code V4.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Evil0ctal committed Aug 20, 2024
1 parent c33095a commit d49291c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions app/api/endpoints/tiktok_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@


# 获取单个作品数据
@router.get("/fetch_one_video", response_model=ResponseModel, summary="获取单个作品数据/Get single video data")
@router.get("/fetch_one_video",
response_model=ResponseModel,
summary="获取单个作品数据/Get single video data",
deprecated=True
)
async def fetch_one_video(request: Request,
aweme_id: str = Query(example="7350810998023949599", description="作品id/Video id")):
"""
Expand Down Expand Up @@ -42,4 +46,5 @@ async def fetch_one_video(request: Request,
router=request.url.path,
params=dict(request.query_params),
)
raise HTTPException(status_code=status_code, detail=detail.dict())
raise HTTPException(status_code=status_code, detail=detail.dict())

4 changes: 2 additions & 2 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ API:
Redoc_URL: /redoc # API documentation URL | API文档URL

# API Information
Version: V4.0.5 # API version | API版本
Update_Time: 2024/07/07 # API update time | API更新时间
Version: V4.0.6 # API version | API版本
Update_Time: 2024/08/19 # API update time | API更新时间
Environment: Demo # API environment | API环境

# Download Configuration
Expand Down

0 comments on commit d49291c

Please sign in to comment.