davidyou / hello-douyin

PHP 抖音 SDK

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

This package is auto-updated.

Last update: 2024-09-26 14:16:20 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();

许可证

MIT