PHP code example of justmd5 / pinduoduo-sdk
1. Go to this page and download the library: Download justmd5/pinduoduo-sdk library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
justmd5 / pinduoduo-sdk example snippets
use \Justmd5\PinDuoDuo\PinDuoDuo;
xxxxxx69e3940c6b93xxxxxx',
'client_secret' => 'c2eda0c398xxxxxxbd63ff57bf22c05xxxxxx',
'debug' => true,
'member_type' => 'JINBAO',//用户角色 :MERCHANT(商家授权),H5(移动端),多多进宝推手(JINBAO),快团团团长(KTT),拼多多电子面单用户(LOGISTICS)
'redirect_uri' => 'https://test.xxx.com/callback',
'log' => [
'name' => 'pinduoduo',
'file' => __DIR__ . '/pinduoduo.log',
'level' => 'debug',
'permission' => 0777,
],
];
$pinduoduo = new PinDuoDuo($config);
$result = $pinduoduo->api->request('pdd.ddk.goods.detail',['goods_sign'=>'Y9X2o23Pb-lfwWc1wvfZk0N5-QNj-R7b_JlrlXGK3D']);
$url = $pinduoduo->pre_auth->authorizationUrl();
$pinduoduo->pre_auth->authorizationRedirect();
$token = $pinduoduo->pre_auth->getAccessToken();
//也可以通过上面得到的 refresh_token 去刷新令牌
//$token = $pinduoduo->pre_auth->refreshToken($token['refresh_token']);
$pinduoduo = $pinduoduo->oauth->createAuthorization($token['token']);
$result = $pinduoduo->auth_api->request('pdd.ddk.oauth.goods.pid.query');
$result = $pinduoduo->api->auth()->request('pdd.ddk.goods.pid.query')