Two factor authentication using facebook account kit
ibonly/laravel-accountkit is a Laravel package for two factor authentication using facebook account kit.
It currently has 28 GitHub stars and 16.652 downloads on Packagist (latest version v1.2).
Install it with composer require ibonly/laravel-accountkit.
Discover more Laravel packages by ibonly
or browse all Laravel packages to compare alternatives.
Last updated
A simple package to make Password-less Login possible in Laravel using Facebook's Account Kit.
See Example Here.
php 7.0+
Composer
Laravel 5.x
To use this package in a Laravel Project, install via Composer
$ composer require ibonly/laravel-accountkit
Register the package to the Service Provider in the config/app.php file:
'providers' => [
...
Ibonly\FacebookAccountKit\FacebookAccountKitServiceProvider::class,
],
'aliases' => [
...
'AccountKit' => Ibonly\FacebookAccountKit\Facades\FacebookAccountKitFacade::class,
],
You can make of some assets provided in this package to speed up your implementation: run
$ php artisan vendor:publish --provider="Ibonly\FacebookAccountKit\FacebookAccountKitServiceProvider"
Create your app on Facebook following guidelines here.
You can view example here.
Update .env file with credentials from Facebook:
ACCOUNTKIT_APP_ID=XXXXXXXXXXXX
ACCOUNTKIT_APP_SECRET=XXXXXXXXXXXXXXXXXXXXXXXX
Define your route in routes/web.php. E.g:
Route::post('/otp-login', 'LoginController@otpLogin');
Import the package in your Controller and use it therein. E.g:
use AccountKit;
use Illuminate\Http\Request;
class LoginController extends Controller
{
...
public function otpLogin(Request $request)
{
$otpLogin = AccountKit::accountKitData($request->code);
...
}
}
The above return an array similar to this:
[â–¼
"id" => "1802782826673865"
"phoneNumber" => "+234XXXXXXXXXXX",
"email" => ""
]
Update the public/js/accountkit.js file with your appId. Same as the one in your env.
Ensure you add Accounkit SDK to your HTML file:
<script type="text/javascript" src="https://sdk.accountkit.com/en_US/sdk.js"></script>
Ensure your form has csrf_token , hidden input code along with email and phone number inputs. E.g:
<input type="hidden" name="_token" id="_token" value="{{ csrf_token() }}">
<input type="hidden" name="code" id="code" />
Run any of the following commands in your terminal.
$ composer test
This package is maintained by Ibrahim Adeniyi and Surajudeen AKANDE.
Please check out CONTRIBUTING file for detailed contribution guidelines.
Please check out CHANGELOG file for information on what has changed recently.
This package is released under the MIT Licence. See the bundled LICENSE file for details.