Questions tagged [laravel-socialite]

Socialite is a package that provides a simple, convenient way to authenticate with OAuth providers within the Laravel framework.

For Laravel 5.6 this link will help to integrate third party platforms like facebook, twitter, linkedin, google, github or bitbucket

To integrate other platforms like Instagram, LinkedIn , Medium , this link is very beneficial.

606 questions
0
votes
0 answers

laravel 6 socialite login facebook / how do i fix Can't load URL: The domain of this URL isn't included in the app's domains

i want to add login with facebook to my application and i am following laravel doc: i installed : composer require laravel/socialite then i added to services.php : `'facebook' => [ 'client_id' => env('FACEBOOK_CLIENT_ID'), …
Siwar Bondka
  • 78
  • 1
  • 7
0
votes
1 answer

AADSTS50011: The reply URL specified in the request does not match the reply in Laravel Socialite

I am using Laravel-5.8 for User Azure AD Authentication. I installed this package: "socialiteproviders/microsoft-azure": "^3.0", composer require socialiteproviders/microsoft-azure I also did the configuration. The regular Login from database is…
mikefolu
  • 1,203
  • 6
  • 24
  • 57
0
votes
0 answers

Socialite, google api error 'GET https://www.googleapis.com/userinfo/v2/me?prettyPrint=false` resulted in a `401 Unauthorized'

I implemented social login with laravel socialite for facebook and google, and while it works for facebook for google it gives me this error Client error: GET https://www.googleapis.com/userinfo/v2/me?prettyPrint=false resulted in a 401…
Emia
  • 55
  • 8
0
votes
3 answers

laravel socialite not working with JWT auth

Im working with socialite and jwt auth here's my code class SocialAuthFacebookController extends Controller { /** * Create a redirect method to facebook api. * * @return void */ public function redirect() { …
user3814670
  • 61
  • 1
  • 3
  • 10
0
votes
1 answer

Laravel Socialite - Difference between SocialiteProvider Microsoft Graph and Microsoft Azure

I want to make an app for my organisation using SSO via Office365. I found the Socialite plugin for Laravel and now I am wondering: What is the difference between Microsoft Graph and Microsoft Azure Provider?
0
votes
1 answer

Integrate Laravel Socialite with React Native Frontend using Passport

I have a Laravel server with socialite and passport. I installed the coderello plugin to have the grant_social type. When I authorize the social, I reply from laravel to the client with a JSON with the social auth token. How can I capture it from my…
0
votes
1 answer

Facebook "Continue as" button with Laravel\Socialite

I am using Laravel Socialite for Google and Facebook auth. However, instead of simple buttons, like this: Login with Facebook I want to use Facebook's and Google's custom buttons…
0
votes
1 answer

login with facebook redirect to blank page laravel socialite

after i set up a facebook log in with laravel socialite instead of redirect to home page i get blank page public function redirectToProvider() { return Socialite::driver('facebook')->fields([ 'name', 'first_name',…
Moussa Eloifi
  • 15
  • 1
  • 7
0
votes
1 answer

The provided app ID does not look like a valid app ID. laravel

i'm trying to set up a login with facebook in laravel using socialite all goes right except in the last step i get "The provided app ID does not look like a valid app ID" even app ID and secret id are correct Route::get('login/facebook',…
Moussa Eloifi
  • 15
  • 1
  • 7
0
votes
1 answer

Laravel - No reply address is registered for the application in Socialite Azure AD Login

I am using Laravel-5.8 for User Azure AD Authentication. I installed this package: "socialiteproviders/microsoft-azure": "^3.0", composer require socialiteproviders/microsoft-azure I also did the configuration. The regular Login from database is…
mikefolu
  • 1,203
  • 6
  • 24
  • 57
0
votes
1 answer

Error: Class 'Request' not found in Laravel config\azure-oath

I am using Laravel-5.8 for a web application. In order to integrate Azure AD SSO, I installed this package in my application: composer require metrogistics/laravel-azure-ad-oauth When, I wanted to relaunch my application I got this error: Class…
mikefolu
  • 1,203
  • 6
  • 24
  • 57
0
votes
1 answer

Laravel Socialite Providers GOOGLE ERROR Legacy People API has not been used in project

I have installed Socialite and Social Providers for Laravel. It's working with multiple other auth providers but I'm getting this problem with GOOGLE: Client error: GET https://www.googleapis.com/plus/v1/people/me resulted in a 403 Forbidden…
regan
  • 305
  • 2
  • 15
0
votes
1 answer

Facebook Register and Login Using Laravel Socialite

I have an error in the process of registration when I was trying to use Laravel Socialite with the Facebook API login system. The message: Symfony\Component\Debug\Exception\FatalThrowableError Call to undefined method…
0
votes
1 answer

Laravel Socialite callback auth('customer')->user() is null

Laravel 6 There are 2 possible scenario: Logged in user connect to Google account Guest user connect to Google account (will create a new user if not exists) Let's talk about the first scenario In my routes/web.php, no…
Js Lim
  • 3,625
  • 6
  • 42
  • 80
0
votes
1 answer

Laravel Socialite Implement stateless for Twitter

I would like to implement stateless method to Twitter but it seems that it is not available for TwitterProvider class as it returns Call to undefined method Laravel\Socialite\One\TwitterProvider::stateless() Here is my redirectToProvider method…
alvirbismonte
  • 349
  • 2
  • 7
  • 26