我已经在我的本地主机上运行了Laravel cookie,但在Laravel Forge上却没有。在Forge上,我收到了一个Nginx 502
错误的网关错误,我无法分析,因为Forge无法访问错误日志。有人可以帮忙吗?
这是我的代码:
\Cookie::queue('linkedin_user', $li_user); //commenting out this line allows for the proper redirect on Forge
return redirect('/signup');
答案 0 :(得分:1)
我无法使用Cookie,因此我最终使用了Session
。轻松交换,没有麻烦。
\Session::put('linkedin_user', $li_user);
return redirect('/signup');