🎨 #2777【企业微信】 增加直播回调事件常量支持

This commit is contained in:
0katekate0 2022-08-12 17:10:00 +08:00 committed by GitHub
parent fe49e5af11
commit c84b46a55b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 2 deletions

View File

@ -154,6 +154,11 @@ public class WxCpConsts {
*/
public static final String MSGAUDIT_NOTIFY = "msgaudit_notify";
/**
* 直播回调事件
*/
public static final String LIVING_STATUS_CHANGE = "living_status_change";
}
/**

View File

@ -8,6 +8,7 @@ import me.chanjar.weixin.cp.api.impl.WxCpServiceImpl;
import me.chanjar.weixin.cp.bean.living.*;
import me.chanjar.weixin.cp.bean.message.WxCpXmlMessage;
import me.chanjar.weixin.cp.config.WxCpConfigStorage;
import me.chanjar.weixin.cp.constant.WxCpConsts;
import me.chanjar.weixin.cp.demo.WxCpDemoInMemoryConfigStorage;
import me.chanjar.weixin.cp.util.xml.XStreamTransformer;
import org.eclipse.jetty.util.ajax.JSON;
@ -64,6 +65,12 @@ public class WxCpLivingTest {
livingXmlMsg.setAllFieldsMap(XmlUtils.xml2Map(livingXml));
log.info("livingXmlMsg:{}", JSON.toString(livingXmlMsg));
/**
* 直播回调事件常量
* https://developer.work.weixin.qq.com/document/path/94145
*/
String livingStatusChange = WxCpConsts.EventType.LIVING_STATUS_CHANGE;
/**
* 测试创建直播

View File

@ -104,7 +104,7 @@ public class WxCpMsgAuditTest {
* <aesKey></aesKey> // 回调配置的EncodingAESKey
*
* // 企业微信会话存档
* // 1会话存档私钥一定要加上前缀
* // 1会话存档私钥最好去除前缀和换行如下所示
* // 2仔细配置windows以及linux环境sdk路径
* <msgAuditPriKey>MIxxx893B2pggd1r95T8k2QxxxxbD6xxxxmXsskn+5XunyR1WJlJGqgi0OMVGYvSfkNb9kD50fM21CGLcN1y4miL9fVNBIsvJmIUeJCNS8TioAVGFvh2EgzjqTR1gH</msgAuditPriKey>
* <msgAuditLibPath>/www/osfile/libcrypto-1_1-x64.dll,libssl-1_1-x64.dll,libcurl-x64.dll,WeWorkFinanceSdk.dll,libWeWorkFinanceSdk_Java.so</msgAuditLibPath>
@ -131,6 +131,17 @@ public class WxCpMsgAuditTest {
* secret: xIpum7Yt4NMXcyxdzcQ2l_46BG4Qxxxxxxxxxxx
* token:
* aesKey:
* msgAuditPriKey: MIxxx893B2pggd1r95T8k2QxxxxbD6xxxxmXsskn+5XunyR1WJlJGqgi0OMVGYvSfkNb9kD50fM21CGLcN1y4miL9fVNBIsvJmIUeJCNS8TioAVGFvh2EgzjqTR1gHxxx
* msgAuditLibPath: /www/osfile/libcrypto-1_1-x64.dll,libssl-1_1-x64.dll,libcurl-x64.dll,WeWorkFinanceSdk.dll,libWeWorkFinanceSdk_Java.so
*
*
* 在线生成非对称加密公钥私钥对
* http://web.chacuo.net/netrsakeypair
*
*
* 或者可以在linux上使用如下命令生成公钥私钥对
* openssl genrsa -out private_key.pem 2048
* openssl rsa -in private_key.pem -pubout -out public_key.pem
* /
/**
@ -262,7 +273,7 @@ public class WxCpMsgAuditTest {
}
}
// 注意
// 当此批次数据拉取完毕后可以释放此次sdk
// 当此批次数据拉取完毕后释放此次sdk
log.info("释放sdk {}", chatDatas.getSdk());
Finance.DestroySdk(chatDatas.getSdk());