feat: 添加发送消息的API密钥
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 28s
CI Monitor CI/CD / deploy (push) Successful in 45s

This commit is contained in:
zhaoyingbo 2024-07-12 06:46:42 +00:00
parent bcc0eb0fd7
commit f66bf4b39c

View File

@ -1,5 +1,7 @@
import netTool from "./netTool";
const API_KEY = "1dfz4wlpbbgiky0";
const sendMessage = async (body: any) => {
const URL = "https://egg.imoaix.cn/message";
try {
@ -12,6 +14,7 @@ const sendMessage = async (body: any) => {
sendMessage.byGroupId = async (group_id: string, content: string) => {
return sendMessage({
api_key: API_KEY,
group_id,
msg_type: "interactive",
content,
@ -20,6 +23,7 @@ sendMessage.byGroupId = async (group_id: string, content: string) => {
sendMessage.byChatId = async (chat_id: string, content: string) => {
return sendMessage({
api_key: API_KEY,
receive_id: chat_id,
receive_id_type: "chat_id",
msg_type: "interactive",