Fetches my articles from Readwise. Syncs with/ Neon + Instapaper
simple proxy to fetch http urls using https
502
503 try {
504 const response = await fetch(\`\${API_BASE_URL}/start\`, {
505 method: 'POST',
506 headers: { 'Content-Type': 'application/json' },
525 const pollJobStatus = async () => {
526 try {
527 const response = await fetch(\`\${API_BASE_URL}/status?jobId=\${jobId}\`);
528 if (!response.ok) throw new Error('Polling failed');
529
419
420 try {
421 const response = await fetch(\`\${API_BASE_URL}/start\`, {
422 method: 'POST',
423 headers: { 'Content-Type': 'application/json' },
442 const pollJobStatus = async () => {
443 try {
444 const response = await fetch(\`\${API_BASE_URL}/status?jobId=\${jobId}\`);
445 if (!response.ok) throw new Error('Polling failed');
446