PHP code example of skn036 / laravel-google-client

1. Go to this page and download the library: Download skn036/laravel-google-client 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/ */

    

skn036 / laravel-google-client example snippets


use Illuminate\Http\Request;
use Skn036\Google\GoogleClient;

// pass the google client to the view
Route::get('/google-dashboard', function (Request $request) {
    $googleClient = new GoogleClient();
    return view('google-dashboard', compact('googleClient'));
})->name('google-dashboard');

// redirect go google oauth2 login page
Route::post('/google-login', function (Request $request) {
    return (new GoogleClient())->redirectToAuthUrl();
})->name('google-login');

// logout from google account
Route::post('/google-logout', function (Request $request) {
    (new GoogleClient())->logout();
    return redirect()->route('google-dashboard');
})->name('google-logout');

// authenticate the account from google oauth2 login success
// this route must match the redirect uri in google console and .env file
Route::get('/google-auth-callback', function (Request $request) {
    (new GoogleClient())->authenticate();
    return redirect()->route('google-dashboard');
});

$url = $googleClient->getAuthUrl();
return response()->json($url);

$token = $googleClient->authenticate($request->code);

$googleClient = new GoogleClient(1); // pass the user's id

$accounts = $googleClient->getSyncedAccounts();

[
    ['email' => '[email protected]', 'profile' => ['givenName' => 'John', 'familyName' => 'Doe', ...] ],
    ['email' => '[email protected]', 'profile' => ['givenName' => 'Foo', 'familyName' => 'Bar', ...] ],
];

$googleClient = $googleClient->setDefaultAccount('[email protected]');

$googleClient = new GoogleClient(1, '[email protected]');

use Skn036\Google\GoogleClient;
use YourNamespace\Gmail\GmailMessage;

class Gmail extends GoogleClient
{
    public function __construct(
        string|int|null $userId = null,
        ?string $usingAccount = null,
        ?array $config = null
    ) {
        parent::__construct($userId, $usingAccount, $config);
    }

    // access the messages on gmail api
    public function messages()
    {
        return new GmailMessage($this);
    }
}

namespace YourNamespace\Gmail;

class GmailMessage
{
    protected $service;
    protected $client;
    protected $params = [];

    public function __construct(Gmail $gmail)
    {
        $this->client = $gmail;
        $this->service = new \Google_Service_Gmail($gmail); // initiate the gmail api service
    }

    public function list($params = [])
    {
        $params = array_merge($this->params, $params);

        return $this->service->users_messages->listUsersMessages('me', $params);
    }
}

$mails = (new Gmail())->messages()->list();
bash
php artisan vendor:publish --provider="Skn036\Google\GoogleClientServiceProvider"
html
<!-- login or logout  -->
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8 flex flex-row items-center gap-4">
    @if ($googleClient->isAuthenticated())
    <form method="POST" action="{{ route('google-logout') }}">
        @csrf
        <x-primary-button> {{ __("Logout") }} </x-primary-button>
    </form>
    @else
    <form method="POST" action="{{ route('google-login') }}">
        @csrf
        <x-primary-button> {{ __("Login with Google") }} </x-primary-button>
    </form>
    @endif
</div>

<!-- status -->
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6">
    {{ $googleClient->isAuthenticated() ? "Authenticated user:" . $googleClient->email : 'Not
    authenticated' }}
</div>