0
votes

I'm using yii 2 authclient extension and Exemple code here

When I login from Facebook following error occurs

Setting unknown property: app\models\User::github

I can't find function github().

Please help me. Thanks

2
Can you show us, your code? - Mohan

2 Answers

0
votes

Maybe in your code, somewhere, you have a code like

  • $user->github = ...
  • Yii::$app->user->github = ...

and your User class haven't the github property:

php class User { private $github; // <- I suspect this property is missed }

0
votes

Exemple code here but i don't know property 'github'