yc-hwc/laravel-temu

PHP Temu Client

V1.0.0 2025-08-15 08:09 UTC

This package is auto-updated.

Last update: 2025-08-15 08:11:13 UTC


README

temu client

安装教程

composer require yc-hwc/laravel-temu

用法

配置

       $config = [
           'temuUrl'     => '',
           'accessToken' => '',
           'appKey'      => '',
           'appSecret'   => '',
       ];
    
       $temuClient = \PHPTemu\V1\TemuClient::config($config);

订单列表

       $config = [
           'temuUrl'     => '',
           'accessToken' => '',
           'appKey'      => '',
           'appSecret'   => '',
       ];

        $params = [
            'pageNumber' => 1,
            'pageSize'   => 10
        ];
        $temuClient = \PHPTemu\V1\TemuClient::config($config);
        $res = $temuClient->api('bg.order.list.v2.get')->withBody($params)->post();
        print_r($res);