mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
✨ #252 增加关闭已群发文章评论和查看指定文章的评论数据的接口
This commit is contained in:
@@ -875,7 +875,17 @@ public interface WxMpApiUrl {
|
||||
/**
|
||||
* 打开已群发文章评论.
|
||||
*/
|
||||
OPEN(API_DEFAULT_HOST_URL, "/cgi-bin/comment/open");
|
||||
OPEN(API_DEFAULT_HOST_URL, "/cgi-bin/comment/open"),
|
||||
|
||||
/**
|
||||
* 关闭已群发文章评论.
|
||||
*/
|
||||
CLOSE(API_DEFAULT_HOST_URL, "/cgi-bin/comment/close"),
|
||||
|
||||
/**
|
||||
* 查看指定文章的评论数据.
|
||||
*/
|
||||
LIST(API_DEFAULT_HOST_URL, "/cgi-bin/comment/list");
|
||||
|
||||
private String prefix;
|
||||
private String path;
|
||||
|
||||
Reference in New Issue
Block a user