Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix 'Facebook has detected MyApp isn't using a secure connection to transfer information.' error in Laravel

enter image description here

I am trying to connect my app to facebook login with Laravel and socialite package.But i don't know why facebook show me this error. I searched internet but i couldn't find anything .How can i fix this error ?

I thought that if i make my connection with https it will work but after making https again error appears.

My code in laravel:

web.php

Route::get('login/{provider}', 'SocialController@redirect');
Route::get('login/{provider}/callback','SocialController@Callback');

SocialController.php

    public function redirect($provider)
    {
        return Socialite::driver($provider)->redirect();
    }

    public function Callback($provider){

        $userSocial =   Socialite::driver($provider)->stateless()->user();
        $users       =   User::where(['email' => $userSocial->getEmail()])->first();
        if($users){
            Auth::login($users);
            return redirect('/');
        }else{$user = User::create([
                'username'          => $userSocial->getName(),
                'email'         => $userSocial->getEmail(),
                'provider_id'   => $userSocial->getId(),
                'provider'      => $provider,
            ]);
            return redirect()->route('home');
        }
    }
like image 836
Mammadli Anar Avatar asked Aug 06 '19 09:08

Mammadli Anar


3 Answers

You can do "Create Test App" and replace your App ID and Secret using the test app.

enter image description here

like image 130
mon Avatar answered Nov 06 '22 03:11

mon


The simple answer is - Facebook will send sensitive data to provided redirect_uri, so it is ensuring this connection is private, by forcing you to use valid SSL.

As long as you do not setup a valid domain with proper certificate, Facebook won't let you use production API.

like image 22
Karol Sobański Avatar answered Nov 06 '22 05:11

Karol Sobański


It looks like time expiration. I've just created another Facebook app and it works without that error.

like image 3
Vasiliy Shakhunov Avatar answered Nov 06 '22 05:11

Vasiliy Shakhunov