PHP code example of tequilarapido / socialite-okta

1. Go to this page and download the library: Download tequilarapido/socialite-okta 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/ */

    

tequilarapido / socialite-okta example snippets

 php
Tequilarapido\Okta\OktaServiceProvider::class,
 php
'Socialite' => Laravel\Socialite\Facades\Socialite::class,
 php

    // To get the auhtorization redirect
    return Socialite::with('okta')->redirect();
   
   
    // To get the okta user
    $oktaUser = Socialite::driver('okta')->user();