Social Login Test Page

1. Test Real Social Login

Click one of these buttons to start the real social authentication flow:

Or continue with email

2. Simulate Hash Fragment Redirect

Paste a hash fragment (starting with #) to simulate the redirect from a social provider:

Sample Test Hash:

#access_token=eyJhbGciOiJIUzI1NiIsImtpZCI6IndvNmlCZTdoSXRvbUZxUzgiLCJ0eXAiOiJKV1QifQ.sample.token&expires_at=1745456527&expires_in=604800&refresh_token=test_refresh_token&token_type=bearer

Expected Social Login Flow:

  1. User clicks social login button (e.g., Google, LinkedIn)
  2. User authenticates with the provider
  3. Provider redirects back to our app with token in URL hash fragment
  4. Our /auth/social-redirect page captures the hash tokens
  5. Session is created using supabase.auth.setSession()
  6. User is redirected to original page or homepage
  7. App UI updates to show user is logged in