Skip to content

7. Social Login

dungda-0794 edited this page Feb 13, 2023 · 8 revisions

Note: Social Login custom from package Socialite providers

Features

  • Allows numerous providers
  • Use for

Example

Usage

Sequence

Explain

Interface

/**
* [socialSignIn]
* @param  string $provider                   [The Provider should received from https://socialiteproviders.com/about/]
* @return [Illuminate\Http\RedirectResponse]
*/
public function socialSignIn(?string $provider): RedirectResponse;

/**
* [socialCallback]
* @param  string $provider     [The Provider should received from https://socialiteproviders.com/about/]
* @return [stdClass]
*/
public function socialCallback(?string $provider): stdClass;

Clone this wiki locally