Chào mừng bạn đến với website https://www.muanickpro.com/

Trang chủ Đơn hàng
  • 2026/06/15 17:00:47
  • 37 Lượt xem
NGUỒN BÀI VIẾT từ admin và được sưu tầm từ nhiều NGUỒN khác

Share Code tạo Fanpage hàng loạt trên Facebook

🔵 🔵 🔵 🔵 Share Code Tạo Fanpage Facebook hàng loạt

Demo Quá Trình Tạo
Share Code tạo Fanpage hàng loạt trên Facebook 4
Page Đã Tạo Thành Công
Share Code tạo Fanpage hàng loạt trên Facebook 5
 
HDSD:
Bước 1 : Dùng extension User-Agent Switcher của chrome hoặc firefox fake sang trình duyệt opera mini 9.80 (cách fake thì google nhé)
Bước 2 : Sau đó chung ta truy cập vào m.facebook.com
Bước 3 : F12 và chuyển qua tab console
Bước 4 : Dán code vào ngay dòng đó
Bước 5 : Enter vào treo trình duyệt.
var page_name = 'muanickpro';
function loadCreatePage() {
    console.log('Dang Tao Page');
    var i = Math.floor((Math.random() * 100000) + 1);
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (xhttp.status == 200 && xhttp.readyState == 4) {
            var data = xhttp.responseText;
            var getValue = data.match(/name="fb_dtsg" value="(.+?)" autocomplete="off"/g);
            var fb_dtsg = getValue[0].replace('name="fb_dtsg" value="', '');
            fb_dtsg = fb_dtsg.replace('" autocomplete="off"', '');
            var charset_test = '€,´,€,´,水,Д,Є';
            var super_category = 1016;
            var category = 2700;
            if (fb_dtsg == null) {
                console.log('Trống fb_dtsg');
            } else {
                console.log('Tạo page...');
                submitCreatePage(fb_dtsg, charset_test, super_category, category, i);
            }
        }
    };
    xhttp.open("GET", 'https://m.facebook.com/pages/create/?page_name=' + page_name + ' ' + i + '&category=0&super_category=1016', true);
    xhttp.send();
}

function submitCreatePage(fb_dtsg, charset_test, super_category, category) {
    var i = Math.floor((Math.random() * 100000) + 1);
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (xhttp.status == 200 && xhttp.readyState == 4) {
            console.log('Skip step info page...');
            var url = xhttp.responseURL;
            skipStepSubmitInfoPage(url);
        }
    };
    xhttp.open("POST", 'https://m.facebook.com/pages/create/add/', true);
    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhttp.send("fb_dtsg=" + fb_dtsg + "&charset_test=" + charset_test + "&page_name=" + page_name + " " + i + "&super_category=" + super_category + "&category=" + category);
}

function skipStepSubmitInfoPage(url) {
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (xhttp.status == 200 && xhttp.readyState == 4) {
            skipStepSubmitInfoPage2(url + '&step=username&skip=true');
        }
    };
    xhttp.open("GET", url + '&step=about&skip=true', true);
    xhttp.send();
}

function skipStepSubmitInfoPage2(url) {
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (xhttp.status == 200 && xhttp.readyState == 4) {
            countDown();
        }
    };
    xhttp.open("GET", url, true);
    xhttp.send();
}

function countDown() {
    console.log('reload script...');
    var a = 30;
    var ITV = setInterval(function() {
        console.log('~ ' + a + 'giây');
        a--;
        if (a === 0) {
            clearInterval(ITV);
            loadCreatePage();
        }
    }, 1000);
}
loadCreatePage();

Hoặc dùng Code này để tạo Page theo kiểu ghép họ tên cho giống Page thật

function loadCreatePage() {

    console.log('Lấy thông tin tạo page…');

    var i = Math.floor((Math.random() * 100000) + 1);

    var wordlist1 = ["Nguyễn", "Lê", "Trần", "Phạm", "Huỳnh", "Phan", "Vũ", "Võ", "Đặng", "Bùi", "Đỗ", "Ngô", "Dương", "Lý"];

    var wordlist2 = ["Diệu Ái", "Khả Ái", "Ngọc Ái", "Hoài An", "Huệ An", "Minh An", "Phương An", "Thanh An", "Huệ Ân", "Bảo Anh", "Diệp Anh", "Hải Anh", "Hồng Anh", "Huyền Anh", "Kiều Anh", "Kim Anh", "Lan Anh", "Mai Anh", "Minh Anh", "Mỹ Anh", "Ngọc Anh", "Nguyệt Anh", "Như Anh", "Phương Anh", "Quế Anh", "Quỳnh Anh", "Thúy Anh", "Thùy Anh", "Trâm Anh", "Trang Anh", "Tú Anh", "Tuyết Anh", "Vân Anh", "Yến Anh", "Kim Ánh", "Ngọc Ánh", "Nguyệt Ánh"];

    var randomNumber1 = parseInt(Math.random() * wordlist1.length);

    var randomNumber2 = parseInt(Math.random() * wordlist2.length);

    var page_name = wordlist1[randomNumber1] + " " + wordlist2[randomNumber2];

    var xhttp = new XMLHttpRequest();

    xhttp.onreadystatechange = function() {

        if (xhttp.status == 200 && xhttp.readyState == 4) {

            var data = xhttp.responseText;

            var getValue = data.match(/name="fb_dtsg" value="(.+?)" autocomplete="off"/g);


            var fb_dtsg = getValue[0].replace('name="fb_dtsg" value="', '');

            fb_dtsg = fb_dtsg.replace('" autocomplete="off"', '');

            var charset_test = '€,´,€,´,?,?,?';

            var super_category = 1016;

            var category = 2700;

            if (fb_dtsg == null) {

                console.log('Tr?ng fb_dtsg');

            } else {

                console.log('Đang tạo');

                submitCreatePage(fb_dtsg, charset_test, super_category, category, i);

            }

        }

    };

    xhttp.open("GET", 'https://m.facebook.com/pages/create/?page_name=' + page_name + ' ' + i + '&category=0&super_category=1016', true);

    xhttp.send();

}

function submitCreatePage(fb_dtsg, charset_test, super_category, category) {

    var i = Math.floor((Math.random() * 100000) + 1);

    var wordlist1 = ["Nguyễn", "Lê", "Trần", "Phạm", "Huỳnh", "Phan", "Vũ", "Võ", "Đặng", "Bùi", "Đỗ", "Ngô", "Dương", "Lý"];

    var wordlist2 = ["Diệu Ái", "Khả Ái", "Ngọc Ái", "Hoài An", "Huệ An", "Minh An", "Phương An", "Thanh An", "Huệ Ân", "Bảo Anh", "Diệp Anh", "Hải Anh", "Hồng Anh", "Huyền Anh", "Kiều Anh", "Kim Anh", "Lan Anh", "Mai Anh", "Minh Anh", "Mỹ Anh", "Ngọc Anh", "Nguyệt Anh", "Như Anh", "Phương Anh", "Quế Anh", "Quỳnh Anh", "Thúy Anh", "Thùy Anh", "Trâm Anh", "Trang Anh", "Tú Anh", "Tuyết Anh", "Vân Anh", "Yến Anh", "Kim Ánh", "Ngọc Ánh", "Nguyệt Ánh"];

    var randomNumber1 = parseInt(Math.random() * wordlist1.length);

    var randomNumber2 = parseInt(Math.random() * wordlist2.length);

    var page_name = wordlist1[randomNumber1] + " " + wordlist2[randomNumber2];

    console.log(page_name);

    var xhttp = new XMLHttpRequest();

    xhttp.onreadystatechange = function() {

        if (xhttp.status == 200 && xhttp.readyState == 4) {

            console.log('Skip step info page…');

            var url = xhttp.responseURL;

            skipStepSubmitInfoPage(url);

        }

    };

    xhttp.open("POST", 'https://m.facebook.com/pages/create/add/', true);

    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");

    xhttp.send("fb_dtsg=" + fb_dtsg + "&charset_test=" + charset_test + "&page_name=" + page_name + " " + i + "&super_category=" + super_category + "&category=" + category);

}

function skipStepSubmitInfoPage(url) {

    var xhttp = new XMLHttpRequest();

    xhttp.onreadystatechange = function() {

        if (xhttp.status == 200 && xhttp.readyState == 4) {

            skipStepSubmitInfoPage2(url + '&step=username&skip=true');

        }

    };

    xhttp.open("GET", url + '&step=about&skip=true', true);

    xhttp.send();

}

function skipStepSubmitInfoPage2(url) {

    var xhttp = new XMLHttpRequest();

    xhttp.onreadystatechange = function() {

        if (xhttp.status == 200 && xhttp.readyState == 4) {

            countDown();

        }

    };

    xhttp.open("GET", url, true);

    xhttp.send();

}

function countDown() {

    console.log('reload script…');

    var a = 222;

    var ITV = setInterval(function() {

        console.log('~ ' + a + 'giây');

        a--;

        if (a === 0) {

            clearInterval(ITV);

            loadCreatePage();

        }

    }, 1000);

}

loadCreatePage();
  • Hướng dẫn tạo page hàng loạt
  • Hướng dẫn tạo fanpage hoàn loạt
  • Tạo page facebook hàng loạt
  • tạo fanpage Facebook hàng loạt

Copy từ 3,4 nguồn lận, nói chung là copy thôi, chả biết tác giả là ai đâu

✨ ✨ ✨ 💡 Lời Khuyên Chuyên Gia

Kiến thức là nền tảng của sự phát triển. Khuyến nghị bạn hãy áp dụng linh hoạt những thông tin trong bài viết này vào thực tế để đạt hiệu quả tối ưu nhất. Nếu thấy hữu ích, đừng quên chia sẻ bài viết này nhé!

0972727476
Chat hỗ trợ
Chat ngay
blog
2026/06/15 15:33:45

Cách giới hạn thời gian xem YouTube Shorts cho trẻ

Xem thêm
product

Nhẫn Đồng Xu 100 Millièmes – Tunisia

1.200.000đ600.000đ
Mua hàng