Laravel_post访问【419】问题解决方法

目录

命名空间

编写【handle】函数


修改【app\Http\Middleware\VerifyCsrfToken.php】文件

由于【post】访问会经过【Csrf】验证,故而会报错【419】,所以需要此步操作。

命名空间

use Closure;

Laravel_post访问【419】问题解决方法

 

编写【handle】函数

public function handle($request, Closure $next)
{
    if($request->method() == 'POST')
    {        return $next($request);    }
    if ($request->method() == 'GET' || $this->tokensMatch($request))
    {        return $next($request);    }
}

Laravel_post访问【419】问题解决方法

再次访问接口测试成功。

Laravel_post访问【419】问题解决方法 

上一篇:Android拦截并获取WebView内部POST请求参数


下一篇:Python3 Post Get API