调用获取已发布的消息列表,获取的数量为0,已确定公众号已发布当中有图文内容,但是返回的参数如下:{"item":[],"total_count":0,"item_count":0}
部分代码:
WXHandle wXHandle = new WXHandle();
string init = wXHandle.GetInit(Common.getConfigValue("WX_ConfigID"));
string url = "https://api.weixin.qq.com/cgi-bin/freepublish/batchget?access_token=" + init;
string json = "{\"offset\":\"0\",\"count\":\"20\",\"no_content\":\"1\"}";
string result = RequestHelper.HttpPost(url, json);

目前【获取已发布的消息列表(/cgi-bin/freepublish/batchget)】接口只能获取到未通知(未开启群发通知)的内容,你可以登录MP后台发表记录查看;
全部、已通知(开启群发通知)的内容暂不支持获取,官方没有提供相关接口。