feat: MVP v0.5 complete - All P0 features implemented and frontend verified. Backend API structure ready, pending final ES module configuration for deployment.
This commit is contained in:
17
test-feishu.mjs
Normal file
17
test-feishu.mjs
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
import { sendFeishuMessage } from './src/server/feishu.js';
|
||||
async function test() {
|
||||
try {
|
||||
const result = await sendFeishuMessage({
|
||||
text: '✅ FlowPilot 后端服务测试消息',
|
||||
receiveId: 'ou_41d14aca8278e605d98e33b1221777e4',
|
||||
receiveIdType: 'open_id',
|
||||
useApp: true,
|
||||
});
|
||||
console.log('Notification sent:', result);
|
||||
} catch (e) {
|
||||
console.error('Failed to send:', e.message);
|
||||
}
|
||||
}
|
||||
test();
|
||||
|
||||
Reference in New Issue
Block a user