latik/taobao-sdk

Mirror taobao api official package

Installs: 1 501

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 0

Forks: 4

pkg:composer/latik/taobao-sdk

0.1 2015-04-07 20:18 UTC

This package is not auto-updated.

Last update: 2025-10-11 22:09:30 UTC


README

Mirror taobao api official package

Installation

php composer.phar composer require latik/taobao-sdk

Usage

Once the library is installed, simply use it in your code by:

<?php

require_once __DIR__ .'/vendor/autoload.php';

$topClient = new TopClient();
$topClient->appkey = '..';
$topClient->secretKey = '..';
var_dump($topClient);
$itemReq = new ItemGetRequest();
$itemReq->setFields("detail_url,nick,props_name,num_iid,title,num_iid,input_str,pic_url,location,price,item_img,prop_img");
$itemReq->setNumIid(123456); // id good

$objResult = $topClient->execute($itemReq);

?>