2

我正在遵循以下教程
http://tutsnare.com/social-authentication-in-laravel-5/
我完全按照所说的步骤进行操作,但是当我尝试转储使用以下代码检索到的用户对象时:

$user = Socialize::with('github')->user();
dd($user);

这没有给出任何输出。然而

$user = Socialize::with('github');
dd($user);

确实返回以下对象:

GithubProvider {#194 ▼
  #scopes: array:1 [▶]
  #request: Request {#37 ▶}
  #clientId: "a client id here"
  #clientSecret: "a client secret here"
  #scopeSeparator: ","
  #encodingType: 1
  #stateless: false
  +"redirectUrl": "My redirect URL
}
4

1 回答 1

0

当我设置我的服务器时,机器产生了一个 SE Linux 错误,说 httpd 服务试图保存在 laravel 的日志中。
后来我注意到了这个错误并stackoverflow了这个错误,找到了以下解决方案。
SELinux 阻止了 httpd(usr/sbin/httpd) 对 /var/www/html/bookings/templates_c 的写访问权限
正如问题中所说,瞧!完毕!

于 2015-06-09T12:27:10.870 回答