PHP code example of import-ai / flarum-oauth-passport
1. Go to this page and download the library: Download import-ai/flarum-oauth-passport 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/ */
import-ai / flarum-oauth-passport example snippets
use FoF\Extend\Events\OAuthLoginSuccessful;
$events->listen(OAuthLoginSuccessful::class, function (OAuthLoginSuccessful $event) {
$token = $event->token; // AccessToken from League\OAuth2\Client
$user = $event->user; // ResourceOwnerInterface
$provider = $event->provider; // 'passport'
$providerId = $event->providerId;
$actor = $event->actor; // Current user (null if guest)
});
bash
composer update import-ai/flarum-oauth-passport
php flarum migrate
php flarum cache:clear