Skip to content

Instantly share code, notes, and snippets.

@houdq
Created January 18, 2020 04:12
Show Gist options
  • Save houdq/3d202929b4926abaab15c74e3ad1f960 to your computer and use it in GitHub Desktop.
Save houdq/3d202929b4926abaab15c74e3ad1f960 to your computer and use it in GitHub Desktop.
package com.intime.opc.tools
import groovy.transform.CompileStatic
import org.apache.http.HttpResponse
import org.apache.http.HttpStatus
import org.apache.http.client.HttpClient
import org.apache.http.client.methods.HttpPost
import org.apache.http.entity.StringEntity
import org.apache.http.impl.client.HttpClients
import org.apache.http.util.EntityUtils
import org.springframework.stereotype.Component
/**
* Created by nbq on 2017/10/26.
*/
@Component
@CompileStatic
class ChatBot {
public
static String WEBHOOK_TOKEN = "https://oapi.dingtalk.com/robot/send?access_token=";
//发文本消息
void sendMessage(String message) {
HttpClient httpclient = HttpClients.createDefault();
HttpPost httppost = new HttpPost(WEBHOOK_TOKEN);
httppost.addHeader("Content-Type", "application/json; charset=utf-8");
String textMsg = "{ \"msgtype\": \"text\", \"text\": {\"content\": \"" + message + "\"}, \"at\": {\n" +
" \"isAtAll\": false\n" +
" }}";
StringEntity se = new StringEntity(textMsg, "utf-8");
httppost.setEntity(se);
HttpResponse response = httpclient.execute(httppost);
if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
String result = EntityUtils.toString(response.getEntity(), "utf-8");
System.out.println(result);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment