method | 说明 | 参数 | 返回值 |
---|---|---|---|
userid | 获取userid | $code | Collection |
accessToken | 获取 access_token | Collection | |
userInfo | 获取用户信息 | $userid | Collection |
asyncSend | 发送工作通知 | 。。。 | Collection |
完善配置
# 钉钉小程序配置
$dingtalkConfig = [
'agentid' => '', // agentid
'appkey' => '', // appkey
'secret' => '', // secret
'robot_appkey' => '', // robot_appkey
'robot_secret' => '', // robot_secret
];
$xcx = new \fengkui\Xcx\Wechat($dingtalkConfig); // 钉钉
获取userid
$code = '';
$xcx->userid($code);
获取 access_token
$xcx->accessToken();
获取用户信息
$userid = '';
$xcx->userInfo($userid);
发送工作通知
$userid = ''; // 用户openid
$data = []; // 发送数据
$path = 'pages/index/index';
$xcx->userid($userid, $data, $path);