我通过laravel / socialite整合了facebook登录,并且工作正常。
问题是当用户点击来自Facebook的弹出窗口中的CL-USER 101 > (handler-case (and (evenp 2)
(oddp 1))
(error (c)
(princ c)
(values)))
T
CL-USER 102 > (handler-case (and (evenp 2)
(/ 3 0)
(oddp 1))
(error (c)
(princ c)
(values)))
Division-by-zero caused by / of (3 0).
时,屏幕将保留在Facebook的页面本身而不是重定向到我的网站。
我需要在facebook登录应用中指定取消重定向网址吗?我不知道如何处理这种重定向。
答案 0 :(得分:1)
刚刚找到答案here
对于其他想知道的人,我只想出办法......在 SocialAuthController:
</rant>
然后将构造函数设为:
use Illuminate\Http\Request;
然后在callback()函数中:
protected $request; public function __construct (Request $request) { $this->request = $request; }