File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/main/java/cn/jiguang/common Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,12 @@ public class ClientConfig extends HashMap<String, Object> {
2222 public static final String PUSH_PATH = "push.path" ;
2323 public static final Object PUSH_PATH_SCHEMA = String .class ;
2424
25+ public static final String BATCH_REGID_PUSH_PATH = "batch.regid.path" ;
26+ public static final Object BATCH_REGID_PUSH_PATH_SCHEMA = String .class ;
27+
28+ public static final String BATCH_ALIAS_PUSH_PATH = "batch.alias.path" ;
29+ public static final Object BATCH_ALIAS_PUSH_PATH_SCHEMA = String .class ;
30+
2531 public static final String PUSH_VALIDATE_PATH = "push.validate.path" ;
2632 public static final Object PUSH_VALIDATE_PATH_SCHMEA = String .class ;
2733
@@ -115,6 +121,8 @@ private ClientConfig() {
115121
116122 this .put (PUSH_HOST_NAME , "https://api.jpush.cn" );
117123 this .put (PUSH_PATH , "/v3/push" );
124+ this .put (BATCH_REGID_PUSH_PATH , "/v3/push/batch/regid/single" );
125+ this .put (BATCH_ALIAS_PUSH_PATH , "/v3/push/batch/alias/single" );
118126 this .put (PUSH_VALIDATE_PATH , "/v3/push/validate" );
119127 this .put (GROUP_PUSH_PATH , "/v3/grouppush" );
120128
You can’t perform that action at this time.
0 commit comments