bing / silex-service
dev-develop
2016-05-30 00:45 UTC
Requires
- php: >=5.5
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- guzzlehttp/guzzle: ~6.0
- phpunit/phpunit: ^4.8
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();