asialong/jinritemai-sdk

抖音抖店phpsdk

0.1.4 2021-12-13 03:31 UTC

This package is not auto-updated.

Last update: 2024-05-06 18:03:01 UTC


README

Install

composer require asialong/jinritemai-sdk -vvv

Usage

<?php

$dispatch = new \Asialong\JinritemaiSdk\Doudian([
    'client_id' => 'your-app-key',
    'client_secret' => 'your-secret',
    'service_id' => 12345,
    'debug' => true,
    'member_type' => 'MERCHANT',
    'redirect_uri' => 'http://www.xxx.com/callback',
    'log' => [
        'name' => 'doudian',
        'file' => __DIR__ . '/doudian.log',
        'level' => 'debug',
        'permission' => 0777,
    ],
]);