- PHP 5.5+
- cURL extension
-
在你的
composer.json
中声明对wangduo SDK for PHP的依赖:"require": { "wangduo/wangduo-sdk-php": "~1.0" }
然后通过
composer install
安装依赖。composer安装完成后,在您的PHP代码中引入依赖即可:require_once __DIR__ . '/vendor/autoload.php';
-
下载SDK源码,在您的代码中引入SDK目录下的
autoload.php
文件:require_once '/path/to/wangduo-sdk-php/autoload.php';
<?php
$user_key = "您的用户Key";
$user_secret = "您的用户密钥";
try{
$shenjian_client = new ShenjianClient($user_key, $user_secret);
} catch (ShenjianException $e){
print $e->getMessage();
}
<?php
$app_id = "爬虫的AppId";
$result = $shenjian_client->startCrawler($app_id);
print $result;
<?php
$app_id = "爬虫的AppId";
$result = $shenjian_client->getCrawlerStatus($app_id);
print $result;
<?php
$app_id = "爬虫的AppId";
$result = $shenjian_client->stopCrawler($app_id);
print $result;