@@ -102,7 +102,7 @@ public WxTagListUser tagListUser(Long tagId, String nextOpenid)
102
102
@ Override
103
103
public boolean batchTagging (Long tagId , String [] openids )
104
104
throws WxErrorException {
105
- String url = "https://api.weixin.qq.com/cgi-bin/tags /members/batchtagging" ;
105
+ String url = API_URL_PREFIX + " /members/batchtagging" ;
106
106
107
107
JsonObject json = new JsonObject ();
108
108
json .addProperty ("tagid" , tagId );
@@ -124,7 +124,7 @@ public boolean batchTagging(Long tagId, String[] openids)
124
124
@ Override
125
125
public boolean batchUntagging (Long tagId , String [] openids )
126
126
throws WxErrorException {
127
- String url = "https://api.weixin.qq.com/cgi-bin/tags /members/batchuntagging" ;
127
+ String url = API_URL_PREFIX + " /members/batchuntagging" ;
128
128
129
129
JsonObject json = new JsonObject ();
130
130
json .addProperty ("tagid" , tagId );
@@ -145,7 +145,7 @@ public boolean batchUntagging(Long tagId, String[] openids)
145
145
146
146
@ Override
147
147
public List <Integer > userTagList (String openid ) throws WxErrorException {
148
- String url = "https://api.weixin.qq.com/cgi-bin/tags /getidlist" ;
148
+ String url = API_URL_PREFIX + " /getidlist" ;
149
149
150
150
JsonObject json = new JsonObject ();
151
151
json .addProperty ("openid" , openid );
0 commit comments