Laravel wrapper for the AdWords Targeting Idea Service
schulzefelix/laravel-adwords-targeting-idea-service is a Laravel package for laravel wrapper for the adwords targeting idea service.
It currently has 26 GitHub stars and 2.421 downloads on Packagist (latest version 1.9.0).
Install it with composer require schulzefelix/laravel-adwords-targeting-idea-service.
Discover more Laravel packages by schulzefelix
or browse all Laravel packages to compare alternatives.
Last updated
This package can be installed through Composer.
$ composer require schulzefelix/laravel-adwords-targeting-idea-service
The package will autoregister the service provider. If package discovery is disabled add the following.
// config/app.php
'providers' => [
...
SchulzeFelix\AdWords\AdWordsServiceProvider::class,
...
];
The package will autoregister the facade. If package discovery is disabled add the following.
// config/app.php
'aliases' => [
...
'AdWords' => SchulzeFelix\AdWords\AdWordsFacade::class,
...
];
You can publish the config file of this package with this command:
php artisan vendor:publish --provider="SchulzeFelix\AdWords\AdWordsServiceProvider"
This requires that the clientId and clientSecret are from a native application.
Google Console: https://console.developers.google.com/apis/credentials
$ php artisan adwords:token
Open the authorization url. Grant access to the app and input the
access token in the console. Copy the refresh token into your configuration config/adwords-targeting-idea-service.php
All methods will return an Illuminate\Support\Collection-instance.
Here are two basic example to retrieve search volumes for several keywords and new keyword ideas for a given word.
$searchVolumes = AdWords::searchVolumes(['cheesecake', 'coffee']);
$keywordIdeas = AdWords::keywordIdeas('coffee');
For Criteria ID see https://developers.google.com/adwords/api/docs/appendix/geotargeting
AdWords::location(2276)->searchVolumes(['cheesecake', 'coffee']);
For Criteria ID see https://developers.google.com/adwords/api/docs/appendix/codes-formats#languages
AdWords::location(2276)->language(1001)->searchVolumes(['cheesecake', 'coffee']);
AdWords::withTargetedMonthlySearches()->searchVolumes(['cheesecake', 'coffee']);
AdWords::convertNullToZero()->location(2276)->language(1001)->searchVolumes(['cheesecake', 'coffee']);
AdWords::location(2642)->exclude(['iphone'])->include(['apple'])->keywordIdeas('iphone');
Please see CHANGELOG for more information what has changed recently.
$ vendor/bin/phpunit
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.