trustedsearch / php-trustedsearch
TRUSTEDSearch PHP 库
v1.0.5
2014-10-28 16:54 UTC
Requires
- php: >=5.2
- ext-curl: *
- ext-json: *
- ext-mbstring: *
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-09-24 01:05:37 UTC
README
使用以下方法获取 TRUSTEDSearch PHP 绑定的最新版本
git clone https://github.com/trustedsearch/php-trustedsearch
文档
请访问 http://developers.trustedsearch.org/ 获取最新的文档。
Packagist: https://packagist.org.cn/packages/trustedsearch/php-trustedsearch
安装
传统
要开始,请将以下内容添加到您的 PHP 脚本中
require_once("/path/to/php-trustedsearch/lib/TrustedSearch.php");
Composer
将以下行添加到您的 composer 文件中的 "require" 块中
trustedsearch/php-trustedsearch
然后更新您的 composer
composer update
用法
要开始使用此包,您需要获得您的沙盒和生产公钥和私钥。
基本配置
require_once("/path/to/php-trustedsearch/lib/TrustedSearch.php"); $publicKey = "XXXX"; $privateKey = "YYYYY"; TrustedSearch::setApiPublicKey($publicKey); TrustedSearch::setApiPrivateKey($privateKey); TrustedSearch::setApiEnvironment('sandbox'); //Options are sandbox or production TrustedSearch::setApiVersion('1'); //You MUST set this. 1 is currently the only option. There is no default.
创建一个令牌。
令牌用于白标产品。
$resource = TrustedSearch_Token::get($username, $password); $data = $resource->getData(); echo $data['token']; echo $data['expires']; echo json_encode($data['userSettings']);
版本 1 API
获取所有用户的业务位置
请参阅 API 文档 获取每个 API 资源参数的列表。
$resource = TrustedSearch_DirectoryListing::get(); $data = $resource->getData(); echo json_encode($data);
获取单个位置的商务更新
请参阅 API 文档 获取每个 API 资源参数的列表。
$testLocation = '45c907bc-6d2f-5f62-9610-5395858d41a0'; $resource = TrustedSearch_DirectoryListing::get($testLocation); $data = $resource->getData(); echo json_encode($data);
获取自 epoch 1380611103 的商务更新
请参阅 API 文档 获取每个 API 资源参数的列表。
$resource = TrustedSearch_DirectoryListing::since(1380611103); $data = $resource->getData(); echo json_encode($data);
提交新的商务列表
请参阅 API 文档 获取每个 API 资源参数的列表。
$data = array( array( 'audit'=> false, 'externalId' => 'mary_t123456240', 'order' => array( "onBehalfOf" => "Partner ABC", 'packages' => array( 'ut002500' ), 'termsAccepted' => true ), 'contact' => array( 'firstName' => 'Mary', 'lastName' => 'Poppins', 'email' => 'mary@poppins.com', 'phone' => '8055551234' ), 'business' => array( 'name' => "Jeremy's Umbrellas Shop", 'street' => "17 Cherry Tree Lane", 'city' => "London", 'state' => "CA", 'postalCode' => "93001", 'phoneLocal' => "(805) 555-9876", 'phoneTollFree' => '(800) 555-5555', 'fax' => '(801) 555-5555', 'website' => 'http://www.marysumbrellas.com', 'email' => 'info@marysumbrellas.com', 'slogan' => "A spoon full of sugar helps the medicine go down.", 'descriptionLong' => 'some long desc...', 'descriptionMedium' => 'some medium desc...', 'descriptionShort' => 'some short desc...', 'keywords' => 'rain gear, fashion, outdoor gear', 'paymentMethods' => array( 'mastercard', 'visa'), 'category1' => 'outdoor', 'category2' => 'fashion', 'category3' => 'rain gear', 'yearEstablished' => '1808', 'productsOffered' => 'umbrellas, rain coats', 'languagesSpoken' => 'english, japanese, spanish', 'hoursOfOperation' => 'MF08001700H', 'numberEmployees' => 23, 'logoUrl' => "http://trustedsearch.org/images/imgTS_Logo.png", 'logoSquareUrl' => 'http://trustedsearch.org/images/imgTS_Logo.png', 'imageUrl'=> array( 'http://trustedsearch.org/images/imgTS_Logo.png', 'http://trustedsearch.org/images/imgTS_Logo.png', 'http://trustedsearch.org/images/imgTS_Logo.png', 'http://trustedsearch.org/images/imgTS_Logo.png', 'http://trustedsearch.org/images/imgTS_Logo.png', ), 'videoUrl' => 'http://www.youtube.com/watch?v=cXuTiAHdxTg' ) ), array( 'audit'=> false, 'externalId' => 'mary_t123456239', 'order' => array( "onBehalfOf" => "Partner ABC", 'packages' => array( 'ut002500' ), 'termsAccepted' => true ), 'contact' => array( 'firstName' => 'Mary', 'lastName' => 'Poppins', 'email' => 'mary@poppins.com', 'phone' => '8055551234' ), 'business' => array( 'name' => "Jeremy's Umbrellas Shop", 'street' => "17 Cherry Tree Lane", 'city' => "London", 'state' => "CA", 'postalCode' => "93001", 'phoneLocal' => "(805) 555-9876", 'phoneTollFree' => '(800) 555-5555', 'fax' => '(801) 555-5555', 'website' => 'http://www.marysumbrellas.com', 'email' => 'info@marysumbrellas.com', 'slogan' => "A spoon full of sugar helps the medicine go down.", 'descriptionLong' => 'some long desc...', 'descriptionMedium' => 'some medium desc...', 'descriptionShort' => 'some short desc...', 'keywords' => 'rain gear, fashion, outdoor gear', 'paymentMethods' => array( 'mastercard', 'visa'), 'category1' => 'outdoor', 'category2' => 'fashion', 'category3' => 'rain gear', 'yearEstablished' => '1808', 'productsOffered' => 'umbrellas, rain coats', 'languagesSpoken' => 'english, japanese, spanish', 'hoursOfOperation' => 'MF08001700H', 'numberEmployees' => 23, 'logoUrl' => "http://trustedsearch.org/images/imgTS_Logo.png", 'logoSquareUrl' => 'http://trustedsearch.org/images/imgTS_Logo.png', 'imageUrl'=> array( 'http://trustedsearch.org/images/imgTS_Logo.png', 'http://trustedsearch.org/images/imgTS_Logo.png', 'http://trustedsearch.org/images/imgTS_Logo.png', 'http://trustedsearch.org/images/imgTS_Logo.png', 'http://trustedsearch.org/images/imgTS_Logo.png', ), 'videoUrl' => 'http://www.youtube.com/watch?v=cXuTiAHdxTg' ) ) ); // end data array $resource = TrustedSearch_LocalBusiness::create($data); $data = $resource->getData(); echo json_encode($data);
验证商务列表
请参阅 API 文档 获取每个 API 资源参数的列表。
$data = //Use same data structure as above to "Submit New Business Listings" try{ $resource = TrustedSearch_LocalBusiness::validate($data); $data = $resource->getData(); echo json_encode($data); }catch(TrustedSearch_Error $e){ $errors = $e->getValidations(); echo $errors['business.descriptionShort']; }
测试
测试/模拟商务列表中的更改
$uuid = '45c907bc-6d2f-5f62-9610-5395858d41a0'; //Take from response above. $response = TrustedSearch_DirectoryListing::simulate($uuid); echo json_encode($response->getData());
版本 2 API
在进行一系列这些调用之前,不要忘记切换版本
TrustedSearch::setApiVersion('2');
新功能!
- 包含验证错误的详细错误消息。
- 分页
- 对资源的 CRUD 操作。
- 标准化响应
列表
TrustedSearch_Listing::index
遍历并过滤与您的帐户关联的任何列表。
请参阅 API 文档 获取每个 API 资源参数的列表。
$page = 1; $filters = array( fulfillment_status_id = "33" ); $perPage = 25; $sort = 'asc'; $orderBy = 'created_at'; $resource = TrustedSearch_Listing::index($page, $filters, $perPage, $sort, $orderBy); $data = $resource->getData(); echo json_encode($data);
错误处理
当存在 API 问题时会抛出异常。
try { $token = TrustedSearch_Token::get($username, $password); } catch (TrustedSearch_AuthenticationError $e) { echo $e->getMessage(); $this->assertEquals(401, $e->getCode()); }
异常
- TrustedSearch_Error
- 请参阅 /lib/TrustedSearch/Errors/Error.php 了解特殊异常处理方法
- TrustedSearch_ApiConnectionError
- TrustedSearch_ApiError
- TrustedSearch_AuthenticationError
- TrustedSearch_InvalidRequestError
输出:(以下内容格式化以便阅读。)
Message: Bummer, we couldn't save this record. You might have to fix a few things first and try again. Body: { "status"=>"error", "code"=>409, "message"=>"Bummer, we couldn't save this record. You might have to fix a few things first and try again.", "error"=>"ModelSaveFailedException", "debug"=>"Model was unable to save, check validation errors.", "validations"=>{"uuid"=>["The uuid field is required."], "business_name"=>["The business name field is required."]}, "data"=>[] } Code: 409
测试
为了运行测试,您必须通过 Composer (https://packagist.org.cn/packages/phpunit/phpunit) 安装 PHPUnit (http://getcomposer.org/) (推荐方式)
composer.phar update --dev
运行测试套件
php ./test/TrustedSearch.php