Always return JSON with Laravel API

Written by deleugpn | Published 2018/04/08
Tech Story Tags: laravel | api | json | json-with-laravel-api | laravel-api

TLDRvia the TL;DR App

I’ve recently started working on some small projects that will only use the backend portion of Laravel. One of the first things we bump into is the Authentication Exception that tries to redirect to /home or /login. That redirection becomes another exception: InvalidArgumentException: Route [login] is not defined.. Here is an extreme simple solution for when you only want to work with API Responses.

1- Write a new BaseRequest

By extending Laravel Request object, we can override the methods used by the framework that decides whether to give a redirect response or a JSON response to always prefer JSON.

2- Swap the implementation

Inside public/index.php we can find where Laravel builds the Request object. Let’s swap \Illumiate\Http\Request with our new BaseRequest class.

$response = $kernel->handle($request = \App\Http\Requests\BaseRequest::capture());

3- Done!

As simple as this, now any HTTP Request will be treated as it wants application/json as the Response. No more Redirect Exceptions.

Update

Alexander Lichter have a killer one-line middleware to achieve the same result. Check out his solution here.


Published by HackerNoon on 2018/04/08