Laravel 带重定向的 cookie
Laravel cookies with redirect
我的本地主机上有 Laravel cookie,但 Laravel Forge 上没有。在 Forge 上,我收到一个 Nginx 502
bad gateway 错误,我无法分析该错误,因为 Forge 不允许访问错误日志。有人可以帮忙吗?
这是我的代码:
\Cookie::queue('linkedin_user', $li_user); //commenting out this line allows for the proper redirect on Forge
return redirect('/signup');
我无法使用 cookie,所以我最终改用了 Session
。轻松交换,没有麻烦。
\Session::put('linkedin_user', $li_user);
return redirect('/signup');
我的本地主机上有 Laravel cookie,但 Laravel Forge 上没有。在 Forge 上,我收到一个 Nginx 502
bad gateway 错误,我无法分析该错误,因为 Forge 不允许访问错误日志。有人可以帮忙吗?
这是我的代码:
\Cookie::queue('linkedin_user', $li_user); //commenting out this line allows for the proper redirect on Forge
return redirect('/signup');
我无法使用 cookie,所以我最终改用了 Session
。轻松交换,没有麻烦。
\Session::put('linkedin_user', $li_user);
return redirect('/signup');