davidyou/hello-douyin

v1.0 2024-06-26 13:44 UTC

This package is auto-updated.

Last update: 2024-10-26 14:34:17 UTC


README

PHP 抖音开发 SDK

环境需求

安装

composer require davidyou/hello-douyin

使用示例

基本使用(以小程序服务端为例):

<?php

use HelloDouYin\MiniProgram\Application;

$config = [
    'app_id' => '5660f39249esdfxd',
    'secret' => '42f4f28f73423dfdsd072xxx',
    'aes_key' => 'opqrstuvwxyz01267EdSBCDEFG',
    'token' => 'HelloDouYin',
];

$app = new Application($config);

$server = $app->getServer();

$server->with(fn() => "您好!HelloDouYin!");

$response = $server->serve();

License

MIT