linhw 2024-06-12 13:06:57 +08:00
parent 9ca1544495
commit c6e3f15959
3 changed files with 4 additions and 4 deletions

View File

@ -111,7 +111,7 @@ public class AppRegisterController extends BaseController {
public static void main(String[] args) {
HttpClient httpClient = HttpClients.createDefault();
String pushId = "7e63c670480d8f2060f8d21800c3ae17";
String url = "https://tcb-am7ffkwasxkewhf-3cpy096b83a1.service.tcloudbase.com/urlPush/pushId?pushId=" + pushId + "&title=审核失败&content=审核被驳回";
String url = "https://fc-mp-7a162b82-1b95-423b-bbba-424378aedca1.next.bspapp.com/urlPush/pushId?pushId=" + pushId + "&title=审核失败&content=审核被驳回";
try {
HttpGet request = new HttpGet(url);

View File

@ -71,7 +71,7 @@ public class AppMessageServiceImpl implements IAppMessageService
continue;
}
HttpClient httpClient = HttpClients.createDefault();
String url = "https://tcb-am7ffkwasxkewhf-3cpy096b83a1.service.tcloudbase.com/urlPush/pushId?pushId=" + appUser.getPushId() + "&content=" + appMessage.getContent();
String url = "https://fc-mp-7a162b82-1b95-423b-bbba-424378aedca1.next.bspapp.com/urlPush/pushId?pushId=" + appUser.getPushId() + "&content=" + appMessage.getContent();
try {
HttpGet request = new HttpGet(url);
HttpResponse response = httpClient.execute(request);

View File

@ -165,7 +165,7 @@ public class AppRegisterServiceImpl implements IAppRegisterService {
sendNoteUtil.sendMessage(appRegister.getPhone());
HttpClient httpClient = HttpClients.createDefault();
String pushId = appRegister.getPushId() != null ? appRegister.getPushId() : null;
String url = "https://tcb-am7ffkwasxkewhf-3cpy096b83a1.service.tcloudbase.com/urlPush/pushId?pushId=" + pushId + "&title=审核完成&content=审核已通过!";
String url = "https://fc-mp-7a162b82-1b95-423b-bbba-424378aedca1.next.bspapp.com/urlPush/pushId?pushId=" + pushId + "&title=审核完成&content=审核已通过!";
try {
HttpGet request = new HttpGet(url);
@ -197,7 +197,7 @@ public class AppRegisterServiceImpl implements IAppRegisterService {
if (i > 0) {
HttpClient httpClient = HttpClients.createDefault();
String pushId = appRegister.getPushId() != null ? appRegister.getPushId() : null;
String url = "https://tcb-am7ffkwasxkewhf-3cpy096b83a1.service.tcloudbase.com/urlPush/pushId?pushId=" + pushId + "&title=审核失败&content=审核已被驳回!";
String url = "https://fc-mp-7a162b82-1b95-423b-bbba-424378aedca1.next.bspapp.com/urlPush/pushId?pushId=" + pushId + "&title=审核失败&content=审核已被驳回!";
try {
HttpGet request = new HttpGet(url);