Skip to content

Instantly share code, notes, and snippets.

View mduc-dev's full-sized avatar

mduc mduc-dev

View GitHub Profile
@mduc-dev
mduc-dev / cloudflare-expo-to-lark.js
Last active June 28, 2025 08:12
Cloudflare Worker: Forward Expo EAS Build Webhook to Lark
async function sendLarkRequest(webhookUrl, larkPayload) {
try {
const response = await fetch(webhookUrl, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
msg_type: "interactive",
card: larkPayload.card,
}),
});