import cn.hutool.http.HttpRequest;
import cn.hutool.http.HttpResponse;
import cn.hutool.http.HttpUtil;
import cn.hutool.json.JSON;
import cn.hutool.json.JSONUtil;import java.util.HashMap;
import java.util.Map;/*** 飞书工具* @author: czy* @date: 2022-9-14*/
public class FeishuUtil {private static String BEARER = "Bearer ";public static void main(String[] args) {String userId = "1261g424";String content = "测试消息";String appId = "cli_a3aad82769235013";String appSecret = "sAAIjSDpfqG6qSSV6NflIhyQsRl6Dajz";String msgUrl = "https://open.feishu.cn/open-apis/im/v1/messages?receive_id_type=user_id";String tokenUrl = "https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal";System.out.println(sendMsg(msgUrl, tokenUrl, appId, appSecret, userId, content));}/*** 发送消息* 需要开启机器人能力* @param msgUrl 发送消息 url* @param tokenUrl 获取token url* @param appId appID 新建组织新建应用,应用详情里获取* @param appSecret app秘钥 应用详情里获取* @param userId 用户ID 管理后台->成员与部门->查看详情 获取* @param content 消息内容* @return*/public static String sendMsg(String msgUrl, String tokenUrl, String appId, String appSecret, String userId, String content) {String token = BEARER + getToken(tokenUrl, appId, appSecret);Map<String, Object> pramMap = new HashMap<>();Map<String, Object> contentMap = new HashMap<>();contentMap.put("text", content);pramMap.put("receive_id", userId);pramMap.put("content", JSONUtil.toJsonStr(contentMap));pramMap.put("msg_type", "text");String body = JSONUtil.toJsonStr(pramMap);HttpRequest request = HttpRequest.post(msgUrl).body(body).header("Authorization", token);HttpResponse execute = request.execute();return execute.body();}/*** 获取token* @param getTokenUrl 获取token url* @param appId 应用ID* @param appSecret 应用秘钥* @return*/public static String getToken(String getTokenUrl, String appId, String appSecret) {Map<String, Object> map = new HashMap<>();map.put("app_id", appId);map.put("app_secret", appSecret);String post = HttpUtil.post(getTokenUrl, map);JSON parse = JSONUtil.parse(post);String tenantAccessToken = (String) parse.getByPath("tenant_access_token");return tenantAccessToken;}
}
查看消息:
https://puqrvrgcbe.feishu.cn/messenger/
可能遇到的问题1: 如何获取UserID(前提需要有组织,可以新建)
解决方案-打开下面链接按截图所示获取:
https://puqrvrgcbe.feishu.cn/admin/contacts/departmentanduser
可能遇到的问题2:如何获取appId、appSecret (前提需要有应用,可以新建)
解决方案-打开下面链接按截图所示获取:
飞书开放平台
可能遇到的问题3:消息发送失败报 employee_id:readonly、send_as_bot 等权限错误
解决方案-打开应用详情,开通下面截图所示权限:
3.1 启用机器人
3.2. 启用权限