Package Data | |
---|---|
Maintainer Username: | andela-iadeniyi |
Maintainer Contact: | ibonly01@gmail.com (Ibraheem Adeniyi) |
Package Create Date: | 2016-09-01 |
Package Last Update: | 2023-04-19 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-01-14 15:04:24 |
Package Statistics | |
---|---|
Total Downloads: | 15,792 |
Monthly Downloads: | 43 |
Daily Downloads: | 2 |
Total Stars: | 28 |
Total Watchers: | 7 |
Total Forks: | 10 |
Total Open Issues: | 3 |
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.