socialite-development

Configure Laravel Socialite OAuth redirects, callbacks, and user retrieval.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/gabriel-daldegan/missionary_journal --skill socialite-development-gabriel-daldegan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: socialite-development
Source: https://github.com/gabriel-daldegan/missionary_journal/tree/main/.agents/skills/socialite-development
Command: npx skills add https://github.com/gabriel-daldegan/missionary_journal --skill socialite-development-gabriel-daldegan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manages OAuth social authentication with Laravel Socialite. Activate when adding social login providers; configuring OAuth redirect/callback flows; retrieving authenticated user details; customizing scopes or parameters; setting up community providers; testing with Socialite fakes; or when the user mentions social login, OAuth, Socialite, or third-party authentication.

Core Features & Use Cases

  • Activation of social providers in config/services.php
  • Redirect and callback handling for multiple providers
  • Retrieve and manage authenticated user details, scopes, and testing with Socialite fakes
  • Use cases include adding social logins to Laravel apps and testing provider responses

Quick Start

Configure a social provider in config/services.php and set up routes for redirect and callback.

Frequently Asked Questions about socialite-development

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up OAuth social login in Laravel?

Configure OAuth social login by adding provider credentials to config/services.php and defining routes for redirect and callback handling to authenticate users through third-party providers.

What is the process for retrieving authenticated user details after a social login callback?

After the OAuth callback redirects back to your Laravel application, retrieve the authenticated user details from the provider response to manage the authenticated session and user data.

Can I test OAuth social authentication flows without making external API requests?

You can test social authentication flows without external requests by using Socialite fakes to mock provider responses, allowing you to retrieve and manage fake authenticated user details during testing.

How do I add a community social login provider to my application?

Adding a community social login provider requires proper configuration of client credentials and provider keys in config/services.php, followed by setting up the community provider for OAuth redirect and callback handling.

How do I customize OAuth scopes or parameters for social login providers?

Customize OAuth scopes or parameters for social login providers by configuring the request settings during the redirect flow to request specific permissions or data from the third-party authentication provider.