Hope can be helpful!
Id and secret of social provider must be in keys array:
From:
'hybridauth' => [ 'providers' => [ 'google' => [ 'enabled' => true, 'id' => 'YOUR GOOGLE CLIENT ID', 'secret' => 'YOUR GOOGLE CLIENT SECRET' ], // ......
https://api-tools.getlaminas.org/documentation/recipes/integrate-social-logins 3
To:
'hybridauth' => [ 'providers' => [ 'google' => [ 'enabled' => true, 'keys' => [ 'id' => 'YOUR GOOGLE CLIENT ID', 'secret' => 'YOUR GOOGLE CLIENT SECRET' ], ],
Hope can be helpful!
Id and secret of social provider must be in keys array:
From:
'hybridauth' => [ 'providers' => [ 'google' => [ 'enabled' => true, 'id' => 'YOUR GOOGLE CLIENT ID', 'secret' => 'YOUR GOOGLE CLIENT SECRET' ], // ......https://api-tools.getlaminas.org/documentation/recipes/integrate-social-logins 3
To:
'hybridauth' => [ 'providers' => [ 'google' => [ 'enabled' => true, 'keys' => [ 'id' => 'YOUR GOOGLE CLIENT ID', 'secret' => 'YOUR GOOGLE CLIENT SECRET' ], ],