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');
});
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);
}
}