TG_bot请求更改为GET

兼容更多反代
pull/100/head
pickmefly 3 years ago committed by GitHub
parent 263a9fb6c3
commit 7aee7d2038
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -54,14 +54,8 @@ public class SenderTelegramMsg extends SenderBaseMsg {
}
final String requestUrl = apiToken;
Log.i(TAG, "requestUrl:" + requestUrl);
Map bodyMap = new HashMap();
bodyMap.put("chat_id", chatId);
bodyMap.put("text", text);
bodyMap.put("parse_mode", "HTML");
final String requestMsg = JSON.toJSONString(bodyMap);
Log.i(TAG, "requestMsg:" + requestMsg);
String finalText = text;
Log.i(TAG, "requestMsg:" + finalText);
//代理相关
final Proxy.Type proxyType = telegramSettingVo.getProxyType();
@ -107,12 +101,8 @@ public class SenderTelegramMsg extends SenderBaseMsg {
.connectionPool(new ConnectionPool(5, 1, TimeUnit.SECONDS)).build();
}
RequestBody requestBody = RequestBody.create(MediaType.parse("application/json;charset=utf-8"), requestMsg);
final Request request = new Request.Builder()
.url(requestUrl)
.addHeader("Content-Type", "application/json; charset=utf-8")
.post(requestBody)
.url(requestUrl+"?chat_id="+chatId+"&text="+ finalText)
.build();
client.newCall(request).enqueue(new Callback() {

Loading…
Cancel
Save