revolution / laravel-google-searchconsole
Google SearchConsole API for Laravel
4.0.1
2024-08-25 02:24 UTC
Requires
- php: ^8.2
- illuminate/support: ^11.0
- revolution/laravel-google-sheets: ^7.0
Requires (Dev)
- orchestra/testbench: ^9.0
README
https://developers.google.com/webmaster-tools
Requirements
- PHP >= 8.2
- Laravel >= 11.0
Versioning
- Basic : semver
- Drop old PHP or Laravel version :
+0.1
. composer should handle it well. - Support only latest major version (
master
branch), but you can PR to old branches.
Installation
composer require revolution/laravel-google-searchconsole
Get API Credentials
from https://developers.google.com/console
Enable Google Search Console API
.
config/google.php
'client_id' => env('GOOGLE_CLIENT_ID', ''), 'client_secret' => env('GOOGLE_CLIENT_SECRET', ''), 'redirect_uri' => env('GOOGLE_REDIRECT', ''), 'scopes' => [\Google\Service\Webmasters::WEBMASTERS], 'access_type' => 'offline', 'approval_prompt' => 'force', 'prompt' => 'consent', //"none", "consent", "select_account" default:none
config/service.php for Socialite
'google' => [ 'client_id' => env('GOOGLE_CLIENT_ID', ''), 'client_secret' => env('GOOGLE_CLIENT_SECRET', ''), 'redirect' => env('GOOGLE_REDIRECT', ''), ],
Configure .env as needed
GOOGLE_APPLICATION_NAME=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT=
Query class
Subclass of Google\Service\Webmasters\SearchAnalyticsQueryRequest.
Make command
Create at app/Search
php artisan make:search:query NewQuery
Query class must have init()
method.
namespace App\Search; use Revolution\Google\SearchConsole\Query\AbstractQuery; class NewQuery extends AbstractQuery { public function init(): void { $this->setStartDate(now()->subMonthWithoutOverflow()->toDateString()); $this->setEndDate(now()->toDateString()); $this->setDimensions(['query']); $this->setAggregationType(['auto']); $this->setRowLimit(100); } }
LICENSE
MIT