mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-24 07:23:01 +08:00
✅ add test for post method
This commit is contained in:
parent
8f1c7420a5
commit
3a4f5f94e1
@ -37,4 +37,16 @@ public class WxMaServiceImplTest {
|
||||
final String unionId = this.wxService.getPaidUnionId("1", null, "3", "4");
|
||||
assertThat(unionId).isNotEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPost() throws WxErrorException {
|
||||
final String postResult = this.wxService.post("https://api.weixin.qq.com/wxa/setdynamicdata", "{\n" +
|
||||
" \"data\": \"{\\\"items\\\": [{\\\"from\\\":{\\\"city_name_cn\\\":\\\"广州市\\\"},\\\"to\\\":{\\\"city_name_cn\\\":\\\"北京市\\\"}}], \\\"attribute\\\": {\\\"count\\\": 1, \\\"totalcount\\\": 100, \\\"id\\\": \\\"1\\\", \\\"seq\\\": 0}}\",\n" +
|
||||
" \"lifespan\": 86400,\n" +
|
||||
" \"query\": \"{\\\"type\\\":100005}\",\n" +
|
||||
" \"scene\": 1\n" +
|
||||
"}");
|
||||
|
||||
System.out.println(postResult);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user