Yii2 authclient bug invalid auth state

I have used yii2 authclient for login with google and facebook.
Its working fine but last fews days i got error like “Invalid auth state” in login with google or facebook.
83935543-3b6d1300-a7d8-11ea-90fb-ad34586666bf

By some reserch and found solution that add validateAuthState’ => false, this was worked in facebook but google not working.

‘authClientCollection’ => [
‘class’ => ‘yii\authclient\Collection’,
‘clients’ => [
‘google’ => [
‘class’ => ‘yii\authclient\clients\Google’,
//‘validateAuthState’ => false,
‘clientId’ => ‘641202039882-fcra4ke8vguuvqvkgosihiqfi3jimmk0.apps.googleusercontent.com’,
‘clientSecret’ => ‘Wkx5UmpUDJRslX0-5lff1Hev’,
‘returnUrl’=>‘http://customer-ttcleaning.bigpos.net/user/auth?authclient=google’,
],
‘facebook’ => [
‘class’ => ‘yii\authclient\clients\Facebook’,
‘validateAuthState’ => false,
‘authUrl’ => ‘https://www.facebook.com/dialog/oauth?display=popup’,
‘clientId’ => ‘606918416800040’,
‘clientSecret’ => ‘4d2f6991a21c91fb7f2dc79399ff20a9’,
‘attributeNames’ => [‘name’, ‘email’, ‘first_name’, ‘last_name’],
]
],
],

Please help to resolve this.

Thank you.