bing/silex-service

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

This package is auto-updated.

Last update: 2025-07-12 05:22:53 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();