Support scripts/.env path

This commit is contained in:
Hamza-Ayed
2026-07-24 16:44:58 +03:00
parent b2261d9192
commit eacd71349e
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path');
// Auto-load .env file if present
const envPath = path.resolve(__dirname, '../.env');
const envPath = path.resolve(__dirname, '.env');
if (fs.existsSync(envPath)) {
const envContent = fs.readFileSync(envPath, 'utf8');
envContent.split('\n').forEach(line => {
@@ -37,7 +37,7 @@ const message = `شركتك تحمل اسمك… وتطبيقك يحمل اسم
async function main() {
console.log('Publishing post to Facebook Page via Page Token...');
// Try direct /me/feed endpoint first (works for Page Access Token)
let res = await fetch(`https://graph.facebook.com/v19.0/me/feed`, {
method: 'POST',