Webflow Oauth Driver for Laravel Socialite
You can install the package via composer:
composer require punchlist/laravel-socialite-webflow
Once you install the package, add the next config values in you config/services.php
configuration file:
'webflow' => [
'base_uri' => env('WEBFLOW_URI'),
'client_id' => env('WEBFLOW_CLIENT_ID'),
'client_secret' => env('WEBFLOW_CLIENT_SECRET'),
'redirect' => env('WEBFLOW_REDIRECT_URI'),
],
Then, you can use the driver as you would use it in the Laravel Socialite's official documentation. Use webflow
keyword when you want to instantiate the driver:
$user = Socialite::driver('webflow')->user();
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email engineering@punchlist.com or use issue tracker.
Development of this package is sponsored by Punchlist learn more about us!
The MIT License (MIT). Please see License File for more information.