Files
kiri-wchat/common/libs/Aliyun.php
T

29 lines
432 B
PHP
Raw Normal View History

2023-11-13 23:52:41 +08:00
<?php
namespace wchat\common\libs;
class Aliyun
{
2023-12-01 17:14:48 +08:00
// APPID
2023-11-13 23:52:41 +08:00
public string $appId;
2023-12-01 17:14:48 +08:00
// APP公钥
public string $appKey;
2023-11-13 23:52:41 +08:00
2023-12-01 17:14:48 +08:00
// APP私钥
public string $appSecret;
2023-11-13 23:52:41 +08:00
2023-12-01 17:14:48 +08:00
// APP公钥证书
public string $appPubSecret;
2023-11-13 23:52:41 +08:00
2023-12-01 17:14:48 +08:00
// 阿里云公钥证书
public string $aliPubSecret;
2023-11-13 23:52:41 +08:00
2023-12-01 17:14:48 +08:00
// 阿里云根证书
public string $aliRootSecret;
2023-11-13 23:52:41 +08:00
2023-12-01 17:14:48 +08:00
// 是否开启证书模式
public int $openFileState;
2023-11-13 23:52:41 +08:00
}