我刚为laravel 5.1(旧项目)设置招摇 我为我的项目编写了完整的文档,但问题是当我去的时候 试试看! 它发送空请求。 当我和邮递员尝试完全相同的东西时,它就像它应该的那样。
这是一个例子:
"darkaonline/l5-swagger": "~3.0"
我正在使用
jq
答案 0 :(得分:4)
您只需更改下面的一些更改。
/**
* @SWG\Post(
* path="/api-routes/verify-report",
* consumes={"multipart/form-data"},
* description="Verify report",
* operationId="verifyReport",
* consumes={"application/x-www-form-urlencoded"},
* produces={"application/json"},
* @SWG\Parameter(
* description="Application report id",
* in="forData",
* name="report_id",
* required=false,
* type="string"
* ),
* @SWG\Response(
* response="200",
* description="successful operation"
* ),
* summary="Verify report",
* tags={
* "Verify report"
* }
* )
* */
public function verifyReport() {
}