Created
January 18, 2020 04:12
-
-
Save houdq/3d202929b4926abaab15c74e3ad1f960 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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