Опишите, как получить указанного пользователя c в swagger yii2? - PullRequest
0 голосов
/ 17 марта 2020

У меня есть метод (показать), с помощью которого я получаю информацию о конкретном c пользователе. Как описать это в более простой ссылке (localhost / users / 12)?

 /**
     * @SWG\Get(path="/api/users/id",
     *     tags={"User"},
     *     summary="",
     *     @SWG\Parameter(
     *         name="Authorization",
     *         in="header",
     *         description="",
     *         required=true,
     *         type="string"
     *     ),
     *     @SWG\Response(
     *         response = 200,
     *         description = "Ok",
     *         @SWG\Schema(ref = "#/")
     *     ),
     *     @SWG\Response(
     *         response = 400,
     *         description = "Bad Request",
     *         @SWG\Schema(ref = "#/")
     *     ),
     *     @SWG\Response(
     *         response = 404,
     *         description = "Not Found",
     *         @SWG\Schema(ref = "#/")
     *     ),
     *     @SWG\Response(
     *         response = 500,
     *         description = "Internal Server Error"
     *     )
     * )
     */

1 Ответ

0 голосов
/ 18 марта 2020
    /**
         * @SWG\Get(path="/api/users/{id}",
         *     tags={"User"},
         *     summary="",
         *     @SWG\Parameter(
         *         name="Authorization",
         *         in="header",
         *         description="",
         *         required=true,
         *         type="string"
         *     ),
         *     @SWG\Parameter(
         *         name="id",
         *         in="path",
         *         description="Укажите ID",
         *         required=true,
         *         type="string"
         *     ),
         *     @SWG\Response(
         *         response = 200,
         *         description = "Ok",
         *         @SWG\Schema(ref = "#/")
         *     ),
         *     @SWG\Response(
         *         response = 400,
         *         description = "Bad Request",
         *         @SWG\Schema(ref = "#/")
         *     ),
         *     @SWG\Response(
         *         response = 404,
         *         description = "Not Found",
         *         @SWG\Schema(ref = "#/")
         *     ),
         *     @SWG\Response(
         *         response = 500,
         *         description = "Internal Server Error"
         *     )
         * )
         */
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...