有时我会出现如下错误。
客户端错误:
POST https://graph.facebook.com/v3.0/oauth/access_token
导致400 Bad Request
响应: {“ error”:{“ message”:“缺少授权码”,“ type”:“ OAuthException”,“ code”:1,“ fbtrace_id”:“ HcMg4CnJFfI”}}
如果发生此错误,我想进行重定向。 怎么做? 我无法测试此错误,因为测试时没有错误。 有时会发生此错误。
我在handleProviderCallback方法中做了类似的事情,但是没有抓住。
if ($request->has('error')) {
return redirect()->route('auth.register.with.facebook.not.allowed');
}