• 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 – Post automatically to Group Facebook

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

Instructions for creating Minecraft-style food photos
Tips

Instructions for creating Minecraft-style food photos

June 9, 2026
Get free Cambridge courses to prepare for IELTS, Starters, Movers
Tips

Get free Cambridge courses to prepare for IELTS, Starters, Movers

June 4, 2026
How to record reaction videos with Android phones, no app needed
Tips

How to record reaction videos with Android phones, no app needed

June 1, 2026
Instructions on how to get Google AI Pro 1 year for free for new accounts
Tips

Instructions on how to get Google AI Pro 1 year for free for new accounts

June 1, 2026
Top free AI tools to help write, test and optimize content
Tips

Top free AI tools to help write, test and optimize content

June 1, 2026
Instructions for receiving Lovable Pro 12 months for free
Tips

Instructions for receiving Lovable Pro 12 months for free

May 29, 2026
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

PDF editing application on Android worth 199k is free

PDF editing application on Android worth 199k is free

June 10, 2026
Instructions for creating Minecraft-style food photos

Instructions for creating Minecraft-style food photos

June 9, 2026
How to buy in-game items for free on iPhone

How to buy in-game items for free on iPhone

June 8, 2026
Practical use of Xiaomi 17T Pro: This is a good phone in 2026

Practical use of Xiaomi 17T Pro: This is a good phone in 2026

June 8, 2026
PDF editing application on Android worth 199k is free

PDF editing application on Android worth 199k is free

June 10, 2026
Instructions for creating Minecraft-style food photos

Instructions for creating Minecraft-style food photos

June 9, 2026
How to buy in-game items for free on iPhone

How to buy in-game items for free on iPhone

June 8, 2026
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

PDF editing application on Android worth 199k is free

PDF editing application on Android worth 199k is free

June 10, 2026
Instructions for creating Minecraft-style food photos

Instructions for creating Minecraft-style food photos

June 9, 2026
  • Home
  • Home 2
  • Home 3
  • Home 4
  • Home 5
  • Home 6
  • Next Dest Page
  • Sample Page

6789 kv999

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

6789 kv999

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