ydg/meituan-union-sdk

meituan union sdk

v1.0.0 2023-04-25 02:53 UTC

This package is auto-updated.

Last update: 2024-09-25 05:38:30 UTC


README

union.meituan.com

Install the latest version with

$ composer require ydg/meituan-union-sdk"
<?php

use Ydg\MeituanUnionSdk\Meituan;

$app = new Meituan([
    'uid' => 'your uid',
    'appkey' => 'your appkey',
    'sign_secret' => 'your sign_secret',
]);
$app->api->orderList([
    'businessLine' => 2,
    'startTime' => time() - 86400,
    'endTime' => time(),
    'page' => 1,
    'limit' => 1,
    'queryTimeType' => 1,
]);