-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path__config__.php
executable file
·52 lines (40 loc) · 1.54 KB
/
__config__.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
$cwd = dirname ( __FILE__ );
require_once $cwd.'/yding/libs/ydinghook.php';
YDingHook::include_files($cwd."/yding/libs");
//你hook钩子函数文件放置的目录
define("YDing_HOOK_DIR", $cwd."/ydinghooks");
define('YDing_DIR_ROOT', dirname(__FILE__).'/');
define("YDing_OAPI_HOST", "https://oapi.dingtalk.com/");//注意,要以/结尾
#
#
# 根据注册信息填写
#
#
//你网站的地址,以/结尾,通过YDing_SITE_URL."yding/index.php";需要能正确访问
define("YDing_SITE_URL", "");
//企业微应用配置
define("YDing_CORPID", "");
define("YDing_CORPSECRET", "");
define("YDing_ChannelSecret","");
define("YDing_SSOSecret", "");
define("YDing_TOKEN", "");//注册事件回调接口token,任意填写,注意保密
define("YDing_ENCODING_AES_KEY", "");//注册事件回调接口的数据加密密钥(ENCODING_AES_KEY),任意填写,注意保密
//SNS网站配置
define("YDing_SNS_APPID", "");
define("YDing_SNS_APP_SECRET", "");
//作为ISV配置
define("YDing_ISV_CORPID", "");
define("YDing_ISV_SSOSecret", "");
define("YDing_ISV_TOKEN", "");//创建套件时填写的token,任意填写,注意保密
define("YDing_ISV_ENCODING_AES_KEY", "");//创建套件时填写的数据加密密钥(ENCODING_AES_KEY),任意填写,注意保密
#
#
# 填写结束
#
#
YDingHook::include_files($cwd."/yding/models");
YDingHook::include_files($cwd."/yding/functions");//包含功能函数库
#加载你自己的hook目录
YDingHook::include_files(YDing_HOOK_DIR);
?>