Các bước gửi tin nhắn cho tất cả bạn bè trên Facebook
Bước 1: Copy đoạn Code phía dưới(() => {
const msgs = ['Chúc mừng năm mới!', 'Happy New Year', 'Happy New Year 2020!', 'Năm mới hạnh phúc', 'Chúc mừng năm mới ;)', 'Năm mới hạnh phúc <3', 'Năm mới bình an :D'];
const messageLimit = 500;
var fb_dtsg = document.getElementsByName('fb_dtsg')[0].value;
var getConversations = (fb_dtsg, c_callback) => {
var c_xhr = new XMLHttpRequest;
var c_data = new FormData();
c_data.append('fb_dtsg', fb_dtsg);
var queries = {
"o0": {
"doc_id": "1475048592613093",
"query_params": {
"limit": messageLimit,
"tags": ["INBOX"],
"includeDeliveryReceipts": true,
"includeSeqID": false
}
}
}
c_data.append('queries', JSON.stringify(queries));
c_xhr.onreadystatechange = () => {
if (c_xhr.readyState == 4 && c_xhr.status == 200) c_callback(JSON.parse(c_xhr.responseText.split('\n')[0])['o0'].data.viewer.message_threads.nodes);
}
c_xhr.open('POST', '/api/graphqlbatch/');
c_xhr.send(c_data);
}
var sendMessage = (fb_dtsg, mmsg, uuid) => {
var formData = new FormData();
formData.append("ids["+uuid+"]", uuid);
formData.append("body", mmsg);
formData.append("fb_dtsg", fb_dtsg);
var r = new XMLHttpRequest;
r.onreadystatechange = () => {
if (r.readyState == 4 && r.status == 200) {
console.log('Message was sent to [' + uuid + ']');
}
}
r.open('POST', 'https://m.facebook.com/messages/send/?icm=1&refid=12&ref=dbl');
r.send(formData);
}
getConversations(fb_dtsg, conversations => {
conversations.forEach(c => {
//console.log(c);
if (c.thread_type == 'ONE_TO_ONE') {
var otherID = c.thread_key.other_user_id;
//console.log(otherID);
sendMessage(fb_dtsg, msgs[Math.floor(Math.random() * msgs.length)], otherID);
} else {
console.log('Auto message to Group is not allowed!');
}
});
});
})();
const msgs = ['Chúc mừng năm mới!', 'Happy New Year', 'Happy New Year 2020!', 'Năm mới hạnh phúc', 'Chúc mừng năm mới ;)', 'Năm mới hạnh phúc <3', 'Năm mới bình an :D'];
const messageLimit = 500;
var fb_dtsg = document.getElementsByName('fb_dtsg')[0].value;
var getConversations = (fb_dtsg, c_callback) => {
var c_xhr = new XMLHttpRequest;
var c_data = new FormData();
c_data.append('fb_dtsg', fb_dtsg);
var queries = {
"o0": {
"doc_id": "1475048592613093",
"query_params": {
"limit": messageLimit,
"tags": ["INBOX"],
"includeDeliveryReceipts": true,
"includeSeqID": false
}
}
}
c_data.append('queries', JSON.stringify(queries));
c_xhr.onreadystatechange = () => {
if (c_xhr.readyState == 4 && c_xhr.status == 200) c_callback(JSON.parse(c_xhr.responseText.split('\n')[0])['o0'].data.viewer.message_threads.nodes);
}
c_xhr.open('POST', '/api/graphqlbatch/');
c_xhr.send(c_data);
}
var sendMessage = (fb_dtsg, mmsg, uuid) => {
var formData = new FormData();
formData.append("ids["+uuid+"]", uuid);
formData.append("body", mmsg);
formData.append("fb_dtsg", fb_dtsg);
var r = new XMLHttpRequest;
r.onreadystatechange = () => {
if (r.readyState == 4 && r.status == 200) {
console.log('Message was sent to [' + uuid + ']');
}
}
r.open('POST', 'https://m.facebook.com/messages/send/?icm=1&refid=12&ref=dbl');
r.send(formData);
}
getConversations(fb_dtsg, conversations => {
conversations.forEach(c => {
//console.log(c);
if (c.thread_type == 'ONE_TO_ONE') {
var otherID = c.thread_key.other_user_id;
//console.log(otherID);
sendMessage(fb_dtsg, msgs[Math.floor(Math.random() * msgs.length)], otherID);
} else {
console.log('Auto message to Group is not allowed!');
}
});
});
})();
Bước 2: Truy cập vào: m.facebook.com
Bước 3: Nhấn F12 hoặc tổ hợp phím Ctrl + Shift + J, dán đoạn code vừa copy lúc nãy vào Console và nhấn Enter.
LƯU Ý:
Như vậy chỉ với 3 bước đơn giản, bạn có thể gửi tin nhắn hàng loạt đến tất cả bạn bè trên Facebook. Chúc các bạn thành công. Nếu thấy hữu ích hãy để lại 1 like nhé!
Bước 3: Nhấn F12 hoặc tổ hợp phím Ctrl + Shift + J, dán đoạn code vừa copy lúc nãy vào Console và nhấn Enter.
LƯU Ý:
- Thay đổi số lượng người nhận ở biến messageLimit. Để số lượng tầm dưới 500 để tránh bị Block tính năng.
- Nội dung tin nhắn bạn có thể chỉnh sửa ở đoạn const msgs = mỗi nội dung nằm trong dấu " " và cách nhau dấu phẩy ,.
Như vậy chỉ với 3 bước đơn giản, bạn có thể gửi tin nhắn hàng loạt đến tất cả bạn bè trên Facebook. Chúc các bạn thành công. Nếu thấy hữu ích hãy để lại 1 like nhé!
No comments:
Post a Comment