Other event notification

1 Get a user’s push mode

{"action":"AEC_MSG_SERVER_GET_PUSH_MODE","userId":"xxx"}
//Return on success {"status":1,"data":"pushmode"}

When it runs successfully, the data field needs to return the user’s push mode. The corresponding values are as follows:
1, turn off all pushes, 2, turn on all pushes

2 Set a user’s push mode

{"action":"AEC_MSG_SERVER_SET_PUSH_MODE","userId":"xxx","pushMode":"xxx"}
//return {"status":"x"}

3 Push system messages to a specified user

{"action" : "AEC_GROUP_PUSH_SYSTEM_MSG","userId" : "xxx"}
返回 {"status":"x"}

4 Push group system messages to a specified group

{"action" : "AEC_GROUP_PUSH_SYSTEM_GROUP_MSG","groupId":"xxx","userId" : "xxx"}
return {"status":"x"}