Support scripts/.env path
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user