snitcher/bing-api-php
Composer 安装命令:
composer require snitcher/bing-api-php
包简介
Bing web search API wrapper in php
关键字:
README 文档
README
A modified version of the original package (scragg0x/bing-api-php) to work with the Bing web-only search API rather than the full search.
Install
The recommended way is through
composer. Just create a composer.json file and
run the php composer.phar install command to install it:
{
"require": {
"snitcher/bing-api-php": "dev-master"
}
}
API Reference
http://datamarket.azure.com/dataset/bing/search
Example
<?php require_once __DIR__ . "/vendor/autoload.php"; use Bing\Client; // You need to obtain a key $key = ''; $c = new Client($key, 'json'); $res = $c->get('Web', ['Query' => 'Snitcher.com']); $res = json_decode($res, true); print_r($res);
统计信息
- 总下载量: 1.74k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-30