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
1 answer

Using Laravel Socialite to Manage User socials setting (like pinterest at user settings page)

How to make unauthorization user social media like pinterest in settings page. so the user can settings connect and disconnect their social media from our website. pinterest setting social picture page :
antoniputra
  • 4,251
  • 6
  • 26
  • 31
0
votes
1 answer

Using Laravel Socialite to connect facebook and validating user permissions

Currently I am creating website that allow user login by their facebook. and the website require their email. the problem is how to facebook authorization with require their email. but when the user doesn't give their email permission, how to cancel…
antoniputra
  • 4,251
  • 6
  • 26
  • 31
0
votes
1 answer

redirect() not working in custom Laravel 5 package

Been facing an issue all week and I know it's probably simple but can't seem to figure it out :( whenever I use in my custom package return redirect('redirectToRoute'); all I get is a white screen if I use dd(redirect('redirectToRoute')); I can…
-1
votes
1 answer

login through specific guard using socialite in laravel

I have this function for google login function : public function loginWithGoogle() { try { $googleUser = Socialite::driver('google')->user(); $user = User::where('google_id', $googleUser->id)->first(); …
user3653474
  • 3,393
  • 6
  • 49
  • 135
-1
votes
1 answer

Callback 404 not found in login with google with Socialite

I have this link on my modal popup
  • and routes is Route::get('google',…
    user3653474
    • 3,393
    • 6
    • 49
    • 135
    -1
    votes
    1 answer

    Call to undefined method Laravel\Socialite\Facades\Socialite::isDeferred()

    Hi i'm new to laravel socialite,when i run the command php artisan config:cache to update the .env file i get this error: Call to undefined method Laravel\Socialite\Facades\Socialite::isDeferred(); composer require laravel/socialite Using version…
    -1
    votes
    1 answer

    Add Unique to 3 columns at the same time

    i'm having a table called social_accounts to store the data for OAuth Login id user_id provider provider_id I want to make user_id,provider,provider_id UNIQUE but i want all 3 columns be unique at the same time meaning a user with id x can have a…
    Youssef mahmoed
    • 373
    • 2
    • 9
    -1
    votes
    1 answer

    Session is destroying after I close the tab - Socialite Laravel

    I have integrated laravel socialite in my project. When I login with FB using socialite and close the tab and re opens it then I have to do login process again. Is it destroying my session? Any idea?
    Faisal Shani
    • 698
    • 1
    • 13
    • 37
    -1
    votes
    2 answers

    Laravel Socialite: override Provider authorization URL

    I am using Laravel 6.5, laravel/socialite package, and the SocialiteProviders/Providers package My questions is about SocialiteProviders/Providers/Etsy but could be extended to any of the Providers for Laravel Socialite. By default, when authorizing…
    pimarc
    • 3,621
    • 9
    • 42
    • 70
    -1
    votes
    1 answer

    laravel socialite class ServiceProvider not found

    I am not really sure what went wrong, but i was trying to get socialite to work by following the instructions on https://socialiteproviders.netlify.com/ but it didnt work. so i googled more and followed the instructions on…
    hatemjapo
    • 800
    • 3
    • 8
    • 30
    -1
    votes
    1 answer

    login with Facebook Laravel problem socialite

    I am creating a Laravel app and I want to include login with facebook, but I have this error: Argument 1 passed to Laravel\Socialite\SocialiteManager::formatRedirectUrl() must be of the type array, null given, called in If someone can help me I…
    -1
    votes
    1 answer

    Laravel socialite register how can I create unique username for users

    How can I create unique username using facebook register socialite laravel, I have the controller code below but I have no idea how it could be, I am new on laravel. Thanks in advance. public function redirectToFacebook() { return…
    Leo
    • 77
    • 1
    • 6
    -1
    votes
    1 answer

    Logout doesn't logout in laravel socialite

    I am unable to logout the google user in my application,when i logout it was redirecting login page saying it is successfully logged out but when i click login with google button it is redirecting to previous logged in user i.e., it is not logged…
    Lll ll
    • 41
    • 11
    -1
    votes
    1 answer

    What data can we get from socialite?

    I'm using socialite laravel. What data can we get from socialite? Can we get location, phone, etc data from socialite?
    -1
    votes
    1 answer

    Error while installing - composer require socialiteproviders/twitch

    Problem 1 - Installation request for socialiteproviders/twitch ^3.0 -> satisfiable by socialiteproviders/twitch[v3.0.0]. - Conclusion: remove laravel/framework v5.3.31 - Conclusion: don't install laravel/framework v5.3.31 -…
    1 2 3
    40
    41