按照最新微信官方文档对客服会话控制接口进行修正

This commit is contained in:
BinaryWang
2016-07-13 18:20:24 +08:00
parent 42ce9a1918
commit 72c46d1bec
4 changed files with 10 additions and 29 deletions

View File

@@ -108,7 +108,7 @@ public class WxMpKefuServiceImplTest {
public void testKfSessionCreate(String kfAccount, String openid)
throws WxErrorException {
boolean result = this.wxService.getKefuService().kfSessionCreate(openid,
kfAccount, "welcome");
kfAccount);
Assert.assertTrue(result);
}
@@ -116,7 +116,7 @@ public class WxMpKefuServiceImplTest {
public void testKfSessionClose(String kfAccount, String openid)
throws WxErrorException {
boolean result = this.wxService.getKefuService().kfSessionClose(openid,
kfAccount, "bye bye");
kfAccount);
Assert.assertTrue(result);
}