zeek/laravel-googleads
Composer 安装命令:
composer require zeek/laravel-googleads
包简介
Simplifies using the google-ads-php client library and Google Ads Query Language in Laravel.
README 文档
README
Simplifies using the google-ads-php client library and Google Ads Query Language in Laravel
Installation
composer require zeek/laravel-googleads
Configuration
php artisan vendor:publish --provider="Zeek\GoogleAds\GoogleAdsServiceProvider"
Modify the config/googleads.php file to include your Google Ads credentials and other settings. You will need the following:
developerToken- Your Google Ads developer token, see https://developers.google.com/google-ads/api/docs/get-started/dev-token & https://developers.google.com/google-ads/api/docs/best-practices/test-accountsclientId&clientSecret- Your Google API Console OAuth2 Client ID & Secret, see https://developers.google.com/google-ads/api/docs/get-started/oauth-cloud-projectrefreshToken- The refresh token for the account you to access, see the usage example below for how you can use Socialite to obtain this.clientCustomerId- The customer ID of the account you want to access, see https://developers.google.com/google-ads/api/docs/best-practices/test-accounts
WARNING: The Developer Token will be PERMANENTLY associated with the OAuth2 Client ID upon first use. If you need to change the Developer Token you will need to create a new Google Cloud Project & new OAuth2 credentials.
NOTE: Ensure that your Google Cloud Project has the Google Ads API enabled.
Notes
Google Ads does not have a read-only scope
See https://groups.google.com/g/adwords-api/c/B0VVHqNOLYs, the only oauth scope available is https://www.googleapis.com/auth/adwords which is read-write. In order to protect against accidental writes, you should use a separate Google Ads account for read-only access.
Usage
Get the Google Ads client
$googleAds = App::make('google-ads');
or
use Zeek\GoogleAds\GoogleAds; $googleAds = new GoogleAds([ 'developerToken' => env('GOOGLE_ADS_DEVELOPER_TOKEN'), 'clientCustomerId' => env('GOOGLE_ADS_CLIENT_CUSTOMER_ID'), 'loginCustomerId' => env('GOOGLE_ADS_LOGIN_CUSTOMER_ID'), 'clientId' => env('GOOGLE_ADS_CLIENT_ID'), 'clientSecret' => env('GOOGLE_ADS_CLIENT_SECRET'), 'refreshToken' => env('GOOGLE_ADS_REFRESH_TOKEN'), ]);
List all customers that the authenticated user has access to
$ads = new GoogleAds([ 'clientId' => config('services.google.client_id'), 'clientSecret' => config('services.google.client_secret'), 'developerToken' => config('services.google.ads_dev_token'), 'refreshToken' => $user->google_refresh_token, ]); $ads->listCustomers(); // ['customerId' => 'Descriptive Name']
Google Ads Query Language
NOTE: This is not implemented yet.
$googleAds = App::make('google-ads'); $googleAds->query('SELECT campaign.id, campaign.name FROM campaign');
Use Socialite to obtain a refresh token
Laravel Socialite makes it easy to work with OAuth providers. Here's an example of how you can use it to obtain a refresh token for a Google Ads account:
NOTE: Ensure that your application hostname is added to the Authorized JavaScript origins in the Google API Console and that the redirect URI is added to the Authorized redirect URIs. (i.e.
https://example.comandhttps://example.com/oauth-redirect)
routes/web.php:
Route::get('google-auth', [GoogleController::class, 'redirectToGoogle']) ->name('google-auth.init'); Route::get('oauth-redirect', [GoogleController::class, 'handleGoogleCallback']);
App\Http\Controllers\GoogleController.php:
NOTE:
Recordis a model where you will be storing your refresh token.
class GoogleController extends Controller { /** * Create a new controller instance. */ public function redirectToGoogle(Request $request, Record $record) { $driver = Socialite::driver('google'); $driver->scopes($this->getScopes()) ->with([ 'access_type' => 'offline', 'prompt' => 'consent select_account', ]); Session::put('record_id', $record->id); Session::forget('google-connection-error'); return $driver->redirect(); } public function handleGoogleCallback(Request $request) { $record = Record::find(Session::get('record_id')); try { $driver = Socialite::driver('google'); $oauth = $driver->user(); // Update record info with oauth provider's info $campaign->update([ 'google_id' => $oauth->id, 'google_refresh_token' => $oauth->refreshToken, ]); } catch (ClientException $e) { } Session::forget('google-connection-error'); return redirect(route('records.edit', $record))->with('status', 'Select your Google Ads customer account.'); } private function getScopes(): array { return [ 'https://www.googleapis.com/auth/adwords', ]; } }
Related Resources:
zeek/laravel-googleads 适用场景与选型建议
zeek/laravel-googleads 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7 次下载、GitHub Stars 达 6, 最近一次更新时间为 2024 年 02 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「google ads」 「laravel-google-ads」 「google-ads-page」 「gaql」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 zeek/laravel-googleads 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 zeek/laravel-googleads 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 zeek/laravel-googleads 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Facebook & Instagram Ads for Laravel 5.6+
A Twitter supported and maintained Ads API SDK for PHP
Origin by Flagrow. Bombarding your users with ads.
Magento 2 Social Login extension is designed for quick login to your Magento 2 store without procesing complex register steps
Origin by Flagrow. Bombarding your users with ads.
Client for Google Directions API to add interpolated points to a route consisting of given coordinates.
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 15
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-02-29