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:
@@ -1002,7 +1002,32 @@ public interface WxMpApiUrl {
|
||||
/**
|
||||
* 查看指定文章的评论数据.
|
||||
*/
|
||||
LIST(API_DEFAULT_HOST_URL, "/cgi-bin/comment/list");
|
||||
LIST(API_DEFAULT_HOST_URL, "/cgi-bin/comment/list"),
|
||||
|
||||
/**
|
||||
* 将评论标记精选.
|
||||
*/
|
||||
MARK_ELECT(API_DEFAULT_HOST_URL, "/cgi-bin/comment/markelect"),
|
||||
|
||||
/**
|
||||
* 将评论取消精选.
|
||||
*/
|
||||
UNMARK_ELECT(API_DEFAULT_HOST_URL, "/cgi-bin/comment/unmarkelect"),
|
||||
|
||||
/**
|
||||
* 删除评论.
|
||||
*/
|
||||
DELETE(API_DEFAULT_HOST_URL, "/cgi-bin/comment/delete"),
|
||||
|
||||
/**
|
||||
* 回复评论.
|
||||
*/
|
||||
REPLY_ADD(API_DEFAULT_HOST_URL, "/cgi-bin/comment/reply/add"),
|
||||
|
||||
/**
|
||||
* 删除回复.
|
||||
*/
|
||||
REPLY_DELETE(API_DEFAULT_HOST_URL, "/cgi-bin/comment/reply/delete");
|
||||
|
||||
private String prefix;
|
||||
private String path;
|
||||
|
||||
Reference in New Issue
Block a user