• Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
AnonyViet - English Version
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
AnonyViet - English Version
No Result
View All Result

Tool Auto Posting To Groups – Post automatically to Group Facebook

AnonyViet by AnonyViet
February 2, 2023
in Tips
0

Tool Auto Posting To Groups was shared by Nguyen Cong Hieu on the J2Team group. This tool will automatically post articles to the Groups that you have joined. The Tool’s feature helps you to post multiple Groups at the same time with different content and images.

Join the channel Telegram belong to AnonyViet 👉 Link 👈

How to use Tool Auto Posting To Groups

Code to automatically post to Facebook Group

Use the Code Auto Posting To Groups below to save it as a .html file and can be run directly on your computer using the Chrome browser.

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>Auto Post To Groups</title>
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

</head>
<body>
  <div class="container">
    <h3><a href="https://m.facebook.com/composer/ocelot/async_loader/?publisher=feed" target="_blank">First click here to get the token</a></h3>
    <div class="row">
      <div class="col-md-6">
        <div class="row">
          <div class="col-md-12">
          <div class="form-group">
            <label for="first">Access Token</label>
            <input type="text" class="form-control" placeholder="Access Token..." id="access-token">
          </div>
          </div>
        </div>
        <div class="row">
          <div class="col-md-12">
          <div class="form-group">
            <label for="first">Spam target (separated by ";")</label>
            <textarea type="text" class="form-control" placeholder="Groups id..." id="spam-target"></textarea>
          </div>
          </div>
        </div>
        <div class="row">
          <div class="col-md-12">
          <div class="form-group">
            <label for="last">Message (separated by "|")</label>
            <textarea type="text" class="form-control" placeholder="Message..." id="spam-message"></textarea>
          </div>
          </div>
        </div>
        <div class="row">
          <div class="col-md-12">
          <div class="form-group">
            <label for="last">URL (*Requires upload file)</label>
            <input type="text" class="form-control" placeholder="Image URL" id="spam-attachment">
          </div>
          </div>
        </div>
        <div class="row">
          <div class="col-md-12">
          <div class="form-group">
            <label for="last">Timer (millisecond)</label>
            <input type="text" class="form-control" placeholder="Distance per post..." id="spam-timer" value="10000">
          </div>
          </div>
        </div>
      </div>
      <div class="col-md-6" id="logText">
      
      </div>
    </div>

    <button id="start-spam" class="btn btn-primary">Submit</button>
    <button id="clean-spam" class="btn btn-primary">Clean</button>
    <button id="group-spam" class="btn btn-info">Get Groups ID</button>
  </div>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
  <script>
    $("#start-spam").click(e => {
        var counter = 0;
        var countPost = 0;
        let messages = $('#spam-message').val().split('|');
        let targets = $('#spam-target').val().split(';');
        let timer = $('#spam-timer').val();
        targets.forEach(target => {
            counter++;
            setTimeout(() => {
                let mess = messages[~~(Math.random() * messages.length)];
                $.post("https://graph.facebook.com/" + target + "/photos", {
                    access_token: $('#access-token').val(),
                    message: mess,
                    url: $('#spam-attachment').val()
                }).then(dataPost => {
                    countPost++;
                    var link = "https://www.facebook.com/" + dataPost.post_id;
                    $('#logText').append('<span style="color: green;">Posted ' + countPost + ' on <a href="' + link + '" target="_blank">' + dataPost.post_id + '</a></span><br/>');
                    if (countPost === targets.length) {
                        timeOutDone();
                    };
                }).fail(() => {
                    countPost++;
                    var link = "https://www.facebook.com/" + target;
                    $('#logText').append('<span style="color: red;">Failed to post ' + countPost + ' on <a href="' + link + '" target="_blank">' + target + '</a></span><br/>');
                    if (countPost === targets.length) {
                        timeOutDone();
                    };
                });
            }, counter * timer);
        });
        $('#logText').append('<span style="color: black;font-weight: bold;"> - - - - START - - - -</span><br/>');
    });

    $("#clean-spam").click(e => {
        $('#logText').html("");
    });

    $("#group-spam").click(e => {
        var groupsId = '';
        $('#logText').html("");
        $.get("https://graph.facebook.com/me/groups", {
            access_token: $('#access-token').val()
        }).then(dataGet => {
            console.log(dataGet);
            dataGet.data.forEach(groupId => {
                groupsId += ';' + groupId.id;
            });
            $('#logText').html(groupsId.substring(1, groupsId.length));
        }).fail(() => {
            $('#logText').append('<span style="color: red;"> - - - - Failed - - - -</span><br/>');
        });
    });

    function timeOutDone() {
        $('#logText').append('<span style="color: blue;"> - - - - DONE - - - -</span><br/>');
    };
  </script>
</body>
</html>

Tool interface will look like this:

Tool Auto Posting To Groups self-posting to the group

How to manually post articles to Facebook Groups

Step 1: Get Token

Click on the line “First click here to get the token“. Then multiply Ctrl + F typing “EAAA” will see your Token. Take the Token and paste it in the box Access Token Please

Step 2: Get Group Id and fill in Spam Target

There are 2 ways to get Group ID:

– If you want to get all the IDs of the participating Group, then click on the . button Get Groups ID.

– To get any Group ID, copy the group’s link and go to the page https://findmyfbid.com/ then press Find numbers. The result will appear a sequence of numbers is the ID of the Group.

You can Spam a post to multiple groups by entering the Group’s ID with a semicolon “;”.

For example:111111111111; 22222222222

Step 3: Fill in the content of the post (Caption)

This is also possible. It’s okay not to have. Can fill Lots of Captions Well, it will randomly pick each post.
Characters “|” is the distance of each Caption.
For example: Ohhh so handsome Ohhh so handsome🙂)

Step 4: URL (This is the image link and is required)

Where did you get the photo link, I’m sure I won’t mention it anymore. This is just one 🙂

Step 5: Timer (Posting distance of each post)

The default here is 10000 milliseconds = 10s. For a long time, it will avoid being detected by Facebook as spam.

Step 6: Use – Functions

Then everyone presses “SubmitLet the Tool start running.

Button “Clean” is to clear the log of previous processes.

Still “Get Groups ID” is to get all the IDs of the groups that have joined. Note that using this can have both J2Team in which)

Author’s Note:

Everyone, please take it easy. Missed Block you not responsible where?

Author interface borrowed from form bootstrap uncle’s Nguyen Anh Nhan.

Link to download Code: https://bit.ly/2wJ1CZA

By: Nguyen Cong Hieu from J2Team

The article achieved: 5/5 – (100 votes)

Tags: AutoAutomaticallyFacebookGroupgroupspostPostingtool
Previous Post

Download WinCHM Pro 5.38 Full – File Creation Software

Next Post

Download VARICAD 2019 Full- 2D/3D design software for mechanics

AnonyViet

AnonyViet

Related Posts

4 ways to fix bluetooth connectivity on Windows 11
Tips

4 ways to fix bluetooth connectivity on Windows 11

August 8, 2025
How to know the computer is tracked and processed by Keylogger
Tips

How to know the computer is tracked and processed by Keylogger

August 7, 2025
Opal: Create applications who do not need to write code
Tips

Opal: Create applications who do not need to write code

August 3, 2025
How to activate a new Start menu on Windows 11
Tips

How to activate a new Start menu on Windows 11

July 29, 2025
Intellgpt: AI tool for osint and data science
Tips

Intellgpt: AI tool for osint and data science

July 28, 2025
How to create Google Ai Pro 12 months free with Indian student account
Tips

How to create Google Ai Pro 12 months free with Indian student account

July 27, 2025
Next Post
Download VARICAD 2019 Full- 2D/3D design software for mechanics

Download VARICAD 2019 Full- 2D/3D design software for mechanics

0 0 votes
Article Rating
Subscribe
Login
Notify of
guest

guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

Recent News

Instructions for receiving 80GB of free data from VinaPhone from August 15

Instructions for receiving 80GB of free data from VinaPhone from August 15

August 15, 2025
Online driving exam preparation: Support theory and practice

Online driving exam preparation: Support theory and practice

August 15, 2025
How to add application to your favorite bar

How to add application to your favorite bar

August 14, 2025
Wowhay.com – The door opens the world of modern knowledge and network culture

Wowhay.com – The door opens the world of modern knowledge and network culture

August 13, 2025
Instructions for receiving 80GB of free data from VinaPhone from August 15

Instructions for receiving 80GB of free data from VinaPhone from August 15

August 15, 2025
Online driving exam preparation: Support theory and practice

Online driving exam preparation: Support theory and practice

August 15, 2025
How to add application to your favorite bar

How to add application to your favorite bar

August 14, 2025
AnonyViet - English Version

AnonyViet

AnonyViet is a website share knowledge that you have never learned in school!

We are ready to welcome your comments, as well as your articles sent to AnonyViet.

Follow Us

Contact:

Email: anonyviet.com[@]gmail.com

Main Website: https://anonyviet.com

Recent News

Instructions for receiving 80GB of free data from VinaPhone from August 15

Instructions for receiving 80GB of free data from VinaPhone from August 15

August 15, 2025
Online driving exam preparation: Support theory and practice

Online driving exam preparation: Support theory and practice

August 15, 2025
  • Home
  • Home 2
  • Home 3
  • Home 4
  • Home 5
  • Home 6
  • Next Dest Page
  • Sample Page

©2024 AnonyVietFor Knowledge kqxs hôm nay xem phim miễn phí mm88 8XBET mm88 trang chủ new88

No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office

©2024 AnonyVietFor Knowledge kqxs hôm nay xem phim miễn phí mm88 8XBET mm88 trang chủ new88

wpDiscuz
0
0
Would love your thoughts, please comment.x
()
x
| Reply