Dieses Blog durchsuchen

Freitag, 14. Oktober 2016

laravel 5: json response with

In Laravell 5 PS7 support is missing. So it is a little bit tricky to return a json response with a statuscode and a content type.

Here is a simple controller which does the trick

<?php namespace App\Modules\Api\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
/**
* @SWG\Swagger(
* schemes={"http"},
* host="swagger.local",
* basePath="/lektionen/swagger/Api/public/Api",
* @SWG\Info(
* version="1.0.0",
* title="Main user api",
* description="This is our main user api. It contains all method to handle users...",
* termsOfService="",
* @SWG\Contact(
* email="pboethig@gmail.com"
* ),
* @SWG\License(
* name="Private License",
* url="URL to the license"
* )
* ),
* @SWG\ExternalDocumentation(
* description="Find out more about this in our FAQ",
* url="http://www.google.de"
* )
* )
*/
class ApiController extends Controller {
/**
* @SWG\Get(
* path="/list",
* summary="List all users",
* tags={"User/list"},
* description="return a list of users",
* operationId="userslist",
* consumes={"application/json"},
* produces={"application/json"},
* @SWG\Response(
* response=200,
* description="successful operation",
* @SWG\Schema(
* type="array",
* @SWG\Items(ref="#/definitions/Users")
* ),
* ),
* @SWG\Response(
* response="404",
* description="Invalid tag value",
* ),
* security={
* {
* "usersstore_auth": {"write:users", "read:users"}
* }
* }
* )
*/
public function list()
{
$content = $this->getFakeData();
return response()->json($content, 200)->header('Content-Type', 'application/json');
}
}
view raw controller.php hosted with ❤ by GitHub

Keine Kommentare:

Kommentar veröffentlichen