๐ Google OAuth Setup Required
โ ๏ธ Current Status
Your OAuth system is ready, but Google credentials are not configured yet.
๐ Step 1: Create Google OAuth App
- Go to Google Cloud Console
- Create a new project or select existing one
- Enable "Google+ API" and "OAuth2 API"
- Go to "Credentials" โ "Create Credentials" โ "OAuth 2.0 Client ID"
- Choose "Web application"
- Set authorized redirect URI to:
https://angelsdx.com/auth/callback/google.php
๐ Step 2: Get Your Credentials
After creating the OAuth app, Google will give you:
- Client ID - starts with numbers, ends with .googleusercontent.com
- Client Secret - random string of letters/numbers
โ๏ธ Step 3: Update Configuration
Edit the file oauth-config-simple.php and replace:
'client_id' => 'YOUR_GOOGLE_CLIENT_ID_HERE',
'client_secret' => 'YOUR_GOOGLE_CLIENT_SECRET_HERE',
With your actual Google credentials.
๐งช Step 4: Test OAuth
Once configured, test by visiting:
โ
When Complete
Your users will be able to:
- Login with Google from login.php
- Register with Google from register.php
- Access member dashboard after authentication