EasyPDD is a PHP library for use open PinDuoDuo APIs.
- PHP >= 7.0.0
- PHP cURL 扩展
- PHP OpenSSL 扩展
SDK 对所使用的框架并无特别要求
composer require "observer/pdd:~1.0" -vvv
基本使用:(以附加服务查询为例)
$config = [
'debug' => true,
'client_id' => 'eaaedbeff0734feea6b0c901474456e2',
'client_secret' => 'c2eda0c398xxxxxxbd63ff57bf22c05xxxxxx',
'log' => [
'level' => 'debug',
'file' => '/tmp/easypdd.log',
],
'oauth' => [
'callback' => 'http:/foo.com/oauth_callback',
'member_type' => 'MERCHANT',
],
];
$app = new \EasyPdd\Foundation\Application($config);
$goods = $app->goods;
$goods->list('access_token');
强烈建议看懂拼多多文档后再来使用本 SDK。
MIT