No description, website, or topics provided.
PHP
Latest commit bb71312 Oct 3, 2017 @eric-urban eric-urban Merge pull request #30 from BingAds/sunset-v9-v10
Sunset v9 v10 samples
Permalink
Failed to load latest commit information.
samples remove v9 and v10 samples Oct 3, 2017
src september proxy refresh Sep 12, 2017
LICENSE.md beta src and license Apr 5, 2017
README.md Update README.md Apr 5, 2017
composer.json beta src and license Apr 5, 2017

README.md

BingAds-PHP-SDK

You can develop Bing Ads applications with any programming language that supports web services. The Bing Ads PHP Software Development Kit (SDK) enhances the experience of developing Bing Ads applications with the PHP programming language. The SDK includes a proxy to all Bing Ads API web services and abstracts low level details of authentication with OAuth. The SDK follows the PSR-4 standard to support autoloading classes from file paths, so that you don’t have to include each classes manually. Your application can simply require autoload.php: require_once "/vendor/autoload.php";

Installing the SDK

You can install the Bing Ads PHP SDK using the Composer package manager to fetch from Packagist. We recommend using Composer as a dependency manager so that you don’t have to manually download the proxy classes.

  1. Download and install Composer. Microsoft Windows users should also add composer.phar to your PATH variable.

  2. Open a command prompt and type composer require microsoft/bingads.

    Note: Windows users who did not add composer.phar to the PATH will need to type php composer.phar require microsoft/bingads instead.

  3. To get updates going forward, type composer update. If any updates are available at packagist, composer will install the latest version.

For more information see Getting Started Using PHP with Bing Ads Services.