This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require("axios") | |
async function gantiNama(token, name) { | |
try { | |
let post = await axios.post(`https://api.telegram.org/bot${token}/setMyName`, { name }) | |
if (post.data.ok === true) { | |
console.log("succes") | |
} else { | |
console.log("failed") | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Scrape Gag Stock By Zyxz | |
My WhatsApp Chanel: https://whatsapp.com/channel/0029VbAeDDDL7UVUJ10izu3i | |
Please Gift Star For My Github🥰 | |
*/ | |
const axios = require("axios") | |
const cheerio = require("cheerio") | |
async function getgag() { |