Я бы сказал, что самое чистое решение для этого - отправить запрос от вашего React Native как ("application / json"). В этом случае Laravel определит, что это вызов API, и не будет перенаправлять на route("login")
. Вот выдержка из App\Http\Middleware\Authenticate
:
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string|null
*/
protected function redirectTo($request)
{
if (! $request->expectsJson()) {
return route('login');
}
}