Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HybridAuth’s config params correction #24

Open
juliangorge opened this issue Aug 3, 2023 · 0 comments
Open

HybridAuth’s config params correction #24

juliangorge opened this issue Aug 3, 2023 · 0 comments
Labels
Bug Something isn't working

Comments

@juliangorge
Copy link

I would like to suggest a modification in documentation, 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'
                ],
               // ......

To:

    'hybridauth' => [
            'providers' => [
                'google' => [
                    'enabled' => true,
                    'keys' => [ 
                        'id' => 'YOUR GOOGLE CLIENT ID',
                        'secret' => 'YOUR GOOGLE CLIENT SECRET'
                    ],
                ],
@juliangorge juliangorge added the Bug Something isn't working label Aug 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant