Google OAuth Setup Required

Configure Google OAuth credentials to enable social login.

1Create Google Cloud Project

Set up a project in the Google Cloud Console:

Create Project

2Enable APIs

Enable Google Identity Toolkit API and People API in APIs & Services → Library.

3Configure OAuth Consent Screen

4Create OAuth Credentials

APIs & Services → Credentials → Create → OAuth client ID (Web application)

Authorized redirect URI:

https://klonr.ai/google_callback.php

5Update config.php

Add your credentials to config.php:

define('GOOGLE_CLIENT_ID', 'your-id.apps.googleusercontent.com');
define('GOOGLE_CLIENT_SECRET', 'your-secret');
define('GOOGLE_REDIRECT_URI', 'https://klonr.ai/google_callback.php');
⚠️ Never commit OAuth credentials to version control. Use environment variables in production.