Code tạo bm Overview

(function(d) {

'use strict';

if (location.hostname.match('business.facebook.com') === null) {

return alert('Chi chay trên Business');

}

let length = 10;

let fb_dtsg = require('DTSGInitialData').token;

console.log(fb_dtsg);

let user_id = require('CurrentUserInitialData').ACCOUNT_ID;

console.log(user_id);

for (var i = 0; i < length; i++) {

fetch('https://business.facebook.com/business/create_account', {

body: `brand_name=BM ${i + Math.random().toString(36).substring(2)}&first_name=Via&last_name=Clone&email=${Math.random().toString(36).substring(2)}@S.7&timezone_id=233&business_category=OTHER&city= &country=&state=&legal_name=&phone_number=&postal_code=&street1=&street2=&website_url= &is_b2b=false&__a=1&fb_dtsg=${fb_dtsg}`,

method: 'POST',

headers: {

'Content-Type': 'application/x-www-form-urlencoded'

},

credentials: 'include',

}).then(e => e.text()).then(e => {

});

}

})(document);

 

- Nguồn Đi Hóng Trên Internet