>>106498529
>>106498602
heres the cloudflare worker script
export default {
async fetch(request, env) {
if (request.method === 'OPTIONS') {
return handleOptions(request);
}
if (request.method !== 'POST') {
return new Response('Expected POST request', { status: 405, headers: corsHeaders });
}
try {
Comment too long. Click here to view the full text.