mirror of
https://github.com/j93es/oauth-backend.git
synced 2026-06-04 08:01:51 +09:00
[Update] 라우터 반환 형태
This commit is contained in:
parent
05a095df7d
commit
58d5deb435
3 changed files with 24 additions and 4 deletions
|
|
@ -44,6 +44,19 @@ async def start(url: str = Query(..., description="The URL to target for vulnera
|
|||
description="""
|
||||
이 엔드포인트는 시스템에 오탐 검증 작업이 시작되었음을 알립니다.
|
||||
또한 시스템은 미리 준비된 오탐 검증 작업 목록을 반환합니다.
|
||||
|
||||
```json
|
||||
{
|
||||
"payload": [
|
||||
{
|
||||
"task_name": "pkce_task", # 검증 작업의 이름
|
||||
"initial_uri": "http://auth.example.com", # browser가 처음 접속할 URI
|
||||
"data": any # 추가 데이터
|
||||
},
|
||||
...
|
||||
]
|
||||
}
|
||||
```
|
||||
""",
|
||||
tags=["2nd STEP"]
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue