desand/taobao-top-client

taobao top client

Installs: 424

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/desand/taobao-top-client

v1.1.1 2017-03-20 04:08 UTC

This package is not auto-updated.

Last update: 2025-11-09 01:31:07 UTC


README

抽取淘宝TopSdk的核心部分

安装

"require": {
    ...
    "desand/taobao-top-client": "*"
    ...
}

php composer.phar update

使用

$config = array(
    'appkey' => '...',
    'secretKey' => '...'
);

$topClient = new \TaobaoTopClient\TopClient($config);

$shopGetRequest = $topClient->get('ShopGetRequest');
$shopGetRequest->setNick('abc');
$shopGetRequest->setFields('sid,cid,...');

$shopData = $topClient->execute($shopGetRequest, $sessionKey);