PHP code example of observer / pdd

1. Go to this page and download the library: Download observer/pdd 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/ */

    

observer / pdd example snippets




$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');