microsoft / bingads
This project provides the PHP client library for the SOAP-based Bing Ads API at Microsoft.
Installs: 1 797 043
Dependents: 12
Suggesters: 0
Security: 0
Stars: 56
Watchers: 14
Forks: 45
Open Issues: 24
Requires
- php: >=7.1
- ext-curl: *
- ext-openssl: *
- ext-soap: *
- dev-main
- dev-master
- v13.0.21.x-dev
- v13.0.21.1
- v13.0.21.1-dev
- v13.0.21
- v13.0.19.x-dev
- v13.0.19
- v13.0.18.x-dev
- v13.0.18
- v13.0.17.x-dev
- v13.0.17
- v13.0.16.x-dev
- v13.0.16.1
- v13.0.16
- v13.0.15.2
- v13.0.15.2-dev
- v13.0.15.1
- v13.0.15.1-dev
- v13.0.15
- v13.0.14
- v13.0.13
- v0.13.0.12
- v0.13.0.11
- v0.13.0.10
- v0.13.0.9
- v0.13.0.8
- v0.13.0.7
- v0.13.0.6
- v0.13.0.5
- v0.13.0.4
- v0.13.0.3
- v0.13.0.2
- v0.13.0.1
- v0.12.13.6
- v0.12.13.5
- v0.12.13.4
- v0.12.13.3
- v0.12.13.2
- v0.12.13.1
- v0.12.0.4
- v0.12.0.3
- v0.12.0.2
- v0.12.0.1
- v0.11.12.7
- v0.11.12.6
- v0.11.12.5
- v0.11.12.4
- v0.11.12.3
- v0.11.12.2
- v0.11.12.1
- v0.11.5.10
- v0.11.5.9
- v0.11.5.8
- v0.11.5.7
- v0.11.5.6
- v0.11.5.5
- v0.11.5.4
- v0.11.5.3
- v0.11.5.2
- dev-update_examples
- dev-jianyun/13.0.9
This package is not auto-updated.
Last update: 2024-10-28 09:44:49 UTC
README
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 __DIR__ . "/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.
-
Download and install Composer. Microsoft Windows users should also add composer.phar to your PATH variable.
-
Make sure your php.ini file has extension=soap.
-
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. -
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 Get Started Using PHP with Bing Ads Services.