💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
>[info] 1 1 **官方文档地址:** [链接]() ***** * 代码: * 返回: ~~~ <?php declare(strict_types=1); namespace Easydingtalk\attendance; use Easydingtalk\common\ApiRequest; use Easydingtalk\common\Config; class Test { public static function test() { // 请求地址 $uri = Config::getApi()['attendance']['group_management']['test']; // 参数 $body = [ 'op_user_id' => 1, ]; // 发送请求 return ApiRequest::post($uri, $body); } } ~~~