Tag: oauth

  • OAuth login using Facebook, Google, Twitter and Github with Laravel Socialite

    OAuth login using Facebook, Google, Twitter and Github with Laravel Socialite

    These days majority of web apps delegate authentication to other providers like Facebook, Google, Twitter, Github and many others. By using OAuth we don’t have to worry about storing user credentials on our server and gives user flexibility to use the same account to authorize on multiple platforms.

  • Create REST API with authentication using Laravel Passport

    Create REST API with authentication using Laravel Passport

    In this post, we are going to dig into REST API building using Laravel 5.4 and Passport OAuth2 server provided by laravel. This is the next part of my post Advance interactive database seeding in Laravel post, we left off at migration and seeding of the database. Let’s build the API which will be consumed by our vue.js…