ibonly / laravel-accountkit
Two factor authentication using facebook account kit
Requires
- php: >=5.5.9
- guzzlehttp/guzzle: ^6.2
- illuminate/support: 5.*
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- mockery/mockery: ^0.9.5
- phpunit/phpcov: 2.*
- phpunit/phpunit: 4.*
- satooshi/php-coveralls: ^1.0
- scrutinizer/ocular: ~1.1
This package is not auto-updated.
Last update: 2024-11-01 13:40:00 UTC
README
Laravel Facebook Account Kit
A simple package to make Password-less Login possible in Laravel using Facebook's Account Kit.
See Example Here.
Requirements
php 7.0+
Composer
Laravel 5.x
Installation
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"
Usage
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" => "" ]
Views
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" />
Testing
Run any of the following commands in your terminal.
$ composer test
Credits
This package is maintained by Ibrahim Adeniyi and Surajudeen AKANDE.
Contributing
Please check out CONTRIBUTING file for detailed contribution guidelines.
Change log
Please check out CHANGELOG file for information on what has changed recently.
License
This package is released under the MIT Licence. See the bundled LICENSE file for details.