wistis/laravel-google-ads
Composer 安装命令:
composer require wistis/laravel-google-ads
包简介
Google Ads API for Laravel
README 文档
README
Google Ads API for Laravel
Integration of googleads/googleads-php-lib in Laravel and Lumen (version >5).
Setup
- Run
$ composer require spotonlive/laravel-google-ads
Laravel
- (Only for Laravel 5.4 or minor) Add provider to config/app.php
'providers' => [ LaravelGoogleAds\LaravelGoogleAdsProvider::class, ],
- Run
$ php artisan vendor:publishto publish the configuration fileconfig/google-ads.phpand insert:- developerToken
- clientId & clientSecret
- refreshToken
Lumen
- Add provider to
bootstrap/app.php
$app->register(LaravelGoogleAds\LaravelGoogleAdsProvider::class);
-
Copy
vendor/spotonlive/laravel-google-ads/config/config.phptoconfig/google-ads.phpand insert:- developerToken
- clientId & clientSecret
- refreshToken
-
Add config to
bootstrap/app.php
$app->configure('google-ads');
Generate refresh token
This requires that the clientId and clientSecret is from a native application.
Run $ php artisan googleads:token:generate and 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/google-ads.php
Basic usage
The following example is for AdWords, but the general code applies to all products.
<?php namespace App\Services; use LaravelGoogleAds\Services\AdWordsService; use Google\AdsApi\AdWords\AdWordsServices; use Google\AdsApi\AdWords\AdWordsSessionBuilder; use Google\AdsApi\AdWords\v201806\cm\CampaignService; use Google\AdsApi\AdWords\v201806\cm\OrderBy; use Google\AdsApi\AdWords\v201806\cm\Paging; use Google\AdsApi\AdWords\v201806\cm\Selector; class Service { /** @var AdWordsService */ protected $adWordsService; /** * @param AdWordsService $adWordsService */ public function __construct(AdWordsService $adWordsService) { $this->adWordsService = $adWordsService; } public function campaigns() { $customerClientId = 'xxx-xxx-xx'; $campaignService = $this->adWordsService->getService(CampaignService::class, $customerClientId); // Create selector. $selector = new Selector(); $selector->setFields(array('Id', 'Name')); $selector->setOrdering(array(new OrderBy('Name', 'ASCENDING'))); // Create paging controls. $selector->setPaging(new Paging(0, 100)); // Make the get request. $page = $campaignService->get($selector); } }
Best practices
Features, requirements, support etc.
See googleads/googleads-php-lib
Dependencies
googleads/googleads-php-libhosts the PHP client library for the various SOAP-based Ads APIs (AdWords, AdExchange Buyer, and DFP) at Google.
Credits
wistis/laravel-google-ads 适用场景与选型建议
wistis/laravel-google-ads 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 170 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 05 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「google」 「adwords」 「laravel」 「ads」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 wistis/laravel-google-ads 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 wistis/laravel-google-ads 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 wistis/laravel-google-ads 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
AdWords PHP API Client
Google Ads API for Laravel forked from nikolajlovenhardt/laravel-google-ads
AdWords PHP API Client
Laravel wrapper for the AdWords Targeting Idea Service
Google Shopping Product Feed for PHP
Contao Extension to add conversion tracking codes, such as from google adwords or facebook to a specific page.
统计信息
- 总下载量: 170
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-05-08
