I've used Yii 2 authclient in my app and when i try it , it gives me
Unknown component ID: authClientCollection
the code i used in config\main.php
'facebook' => [
'class' => 'yii\authclient\clients\Facebook',
'authUrl' => 'https://www.facebook.com/dialog/oauth?display=popup',
'clientId' => ' my app id from facebook',
'clientSecret' => 'My App Secret',
],
in login page :
<?= yii\authclient\widgets\authChoice::widget(['baseAuthUrl'=>['site/auth']]) ?>
any help please .