作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 laravel 5.6 中与社交名流一起工作
有了这个
$social_user = Socialite::driver($provider)->user();
和 dd($social_user)
结果:
User {#799 ▼
+token: "517439085-SQzlrx8Op"
+tokenSecret: "8KnMz1K5WQ9lpg"
+id: "5176085"
+nickname: "test"
+name: "test"
+email: "test@outlook.com"
+avatar: "http://pbs.twimg.com/profilermal.jpeg"
+user: array:40 [▶]
+"avatar_original": "http://pbs.twimg.com/profileyxeYC5.jpeg"
}
我可以得到姓名、ID 和...
$social_user->getName();
$social_user->getAvatar();
$social_user->getId();
但是我怎样才能得到avatar_original
呢?
最佳答案
自 avatar
and other properties are public
,您可以使用标准语法访问它们:
$social_user->avatar;
关于php - 我怎样才能在 laravel 中获得社交名媛的原始头像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48750941/
我刚刚使用 Laravel Socialite 制作了一个授权 Controller 。第一次我只检索姓名和电子邮件数据,然后我尝试检索性别,但出现错误 Undefined property: Lar
我是一名优秀的程序员,十分优秀!