In this tutorial, i’ll show you how to integrate Instagram API in Laravel App. We won’t be using any Instagram PHP wrapper library. Instead, we’ll use socialiteproviders/instagram provider to retrieve an access token from Instagram Continue reading “Integrating Instagram API in Laravel 5.6”
Building a Reddit Image Search App with React Native
I’ve been learning React Native for about a week now. In the process, I’ve developed a Subreddit Image Search App. In this tutorial, I’ll try to share what I’ve learned so far to help beginners build their first app. Continue reading “Building a Reddit Image Search App with React Native”
Webpack 4: Extract CSS from Javascript files with mini-css-extract-plugin
Since the release of Webpack 4, extract-text-webpack-plugin is completely broken. A lot of people are complaining about their builds failing after upgrading to Webpack 4. Continue reading “Webpack 4: Extract CSS from Javascript files with mini-css-extract-plugin”
How to use NTFS drive in Plex Media Library on Ubuntu
If you’re here looking for a way to add NTFS mounted drive to Plex Media Libary and want to avoid the hassle of editing fstab file, then you’ve come to the right place. Continue reading “How to use NTFS drive in Plex Media Library on Ubuntu”
Using Google Drive REST API with Laravel
In this tutorial, we’ll be using Google Drive REST API with Laravel application. We’ll authenticate the user with OAuth service and retrieve their access token. We’ll then use it to manage their drive data and perform read and write operations on their behalf. Continue reading “Using Google Drive REST API with Laravel”
Building Hacker News Desktop App with React and Electron
The story of Electron begins with Github’s open source code editor Atom. The goal was to build a desktop application with web technology. Github started looking for the right tool to build it. Continue reading “Building Hacker News Desktop App with React and Electron”
Building a Cryptocurrency App using React, React Router v4 and Laravel
Previous versions of React Router used a static routing approach for building single page applications where you would define a route to render a component against it after it matches the specified URL. Continue reading “Building a Cryptocurrency App using React, React Router v4 and Laravel”
Laravel 5.6 : Posting to Profiles and Pages with Facebook PHP SDK
Let’s get started by creating a new Laravel project by running
composer create project laravel/laravel acme
Add laravel/socialite and facebook/graph-sdk to composer.json file
1 2 3 4 5 |
"require": { [...] // other dependencies "facebook/graph-sdk": "^5.6", "laravel/socialite": "^3.0", }, |
Continue reading “Laravel 5.6 : Posting to Profiles and Pages with Facebook PHP SDK”
Laravel 5.6 : Social Authentication with Laravel Socialite
After a fresh Laravel installation run php artisan make:auth to generate the conventional form-based authentication scaffolding that will take care of your applications entire authentication system by setting up routes, views, and controllers for registration, authentication and password reset. Continue reading “Laravel 5.6 : Social Authentication with Laravel Socialite”
How to use Laravel Task Scheduler on Windows 10
Creating and running Laravel’s scheduled tasks is pretty straightforward on Linux. All you have to do is to create a cronjob which looks something like
* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1
and it will call your Laravel command scheduler every minute to execute due tasks. Continue reading “How to use Laravel Task Scheduler on Windows 10”