PHP code example of punchlist / laravel-socialite-webflow

1. Go to this page and download the library: Download punchlist/laravel-socialite-webflow library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

punchlist / laravel-socialite-webflow example snippets


'webflow' => [
    'base_uri' => env('WEBFLOW_URI'),
    'client_id' => env('WEBFLOW_CLIENT_ID'),
    'client_secret' => env('WEBFLOW_CLIENT_SECRET'),
    'redirect' => env('WEBFLOW_REDIRECT_URI'),
],

$user = Socialite::driver('webflow')->user();