croudtech / bing-wrapper
This package is abandoned and no longer maintained.
The author suggests using the croudtech/bingads-wrapper package instead.
There is no license information available for the latest version (1.2.2) of this package.
A Wrapper Around Bing.
1.2.2
2018-04-16 14:36 UTC
Requires
- league/csv: ^9.1
- microsoft/bingads: ^0.11.5
- nesbot/carbon: ^1.22
Requires (Dev)
- larapack/dd: ^1.1
- phpunit/phpunit: ~5.7
This package is auto-updated.
Last update: 2021-05-10 20:41:23 UTC
README
Some helper classes arround the Bing API to make life alittle easier.
Usage
Bing Report Helper Class
The BingReportHelper cointains a number of methods that makes report retreival much easier.
getReportingClient
This is just a simplifeid way of retreiveing a bing client
$bingReportHelper = new \BingWrapper\ReportHelper\ReportHelper(); // use $client = $this->bingReportHelper->getReportingClient( 'bingUserName', 'bingPassword', 'bingApiKey' );
downloadKeywordPerformanceReportCsv
$bingReportHelper = new \BingWrapper\ReportHelper\ReportHelper(); $bingAccountId = 123; $startDate = carbon::now()->subDay(); $endDate = carbon::now(); return $this->bingReportHelper->downloadKeywordPerformanceReportCsv( $client, $startDate, $endDate, [$bingAccountId], '/location/on/fileSytem/to/store/csv', [] // arrray of colunm names to exclude. );
downloadAdPerformanceReportCsv
$bingReportHelper = new \BingWrapper\ReportHelper\ReportHelper(); $bingAccountId = 123; $startDate = carbon::now()->subDay(); $endDate = carbon::now(); return $this->bingReportHelper->downloadAdPerformanceReportCsv( $client, $startDate, $endDate, [$bingAccountId], '/location/on/fileSytem/to/store/csv', [] // arrray of colunm names to exclude. );
Workstation Setup
Just a standard composer app.
Prerequisites
- PHP
- Composer
Versioning
Owner
Rob Sills