bing/silex-service

Maintainers

Package info

github.com/davidasrocha/bing-silex-service

pkg:composer/bing/silex-service

Statistics

Installs: 17

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

dev-develop 2016-05-30 00:45 UTC

This package is auto-updated.

Last update: 2026-03-12 06:51:39 UTC


README

Consume Bing Images API to the bing.com

use Bing\Factories\BingImageServiceFactory;


$appID = "1234567890"; // Your Bing App ID
$service = BingImageServiceFactory::create($appID);

$query = "Symfony";
$response = $service->getResponse($query);

echo $response->getBody();