shenzhou/yida

dev-main 2021-08-27 01:59 UTC

This package is auto-updated.

Last update: 2025-03-27 10:24:03 UTC


README

#dingtalk

本仓库为神州中联信息技术有限公司针对宜搭接口开发的对接包。

1. 使用方法

  1. 使用命令行composer require shenzhou/yida安装。
  2. 实例化
$config = [
    //自定义固定字符串。
    'nonceStr' => 'qwe123',
    //应用的标识
    'agentId' => '1273361157',
    //应用的标识
    'AppKey' => '',
    //如果是定制应用,输入定制应用的CustomKey
    'CustomKey' => '11111',
    //如果是定制应用,输入定制应用的CustomSecret,
    'AppSecret' => '',
    'CustomSecret' => '-6E-111111-78ThLTA7LX8uKtbKxqqD2E6hB0xzIwrI3qQLIs5c_uDT4HN',
    //钉钉推送的suiteTicket。
    'suiteTicket' => 'sadasdasd111asdasda',
    //时间戳
    'timeStamp' => time(),
    //企业id
    'corpId' => 'ding01111159b08b496f51f9235c2f4657eb6378f'
]
$this->dingtalk = new DingTalk($config);
  1. 使用各模块 $attendance = $this->dingtalk->attendance();

模块寻找方式 例如考勤获取接口为https://oapi.dingtalk.com/attendance/list 则模块名为attendance,函数名为list

2. 已实现模块