• 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

Some reasons I don’t like Windows 11
Tips

Some reasons I don’t like Windows 11

July 27, 2026
Instructions on how to get free Facebook white ticks
Tips

Instructions on how to get free Facebook white ticks

July 27, 2026
Collection of Windows 11 wallpapers for computers and phones
Tips

Collection of Windows 11 wallpapers for computers and phones

July 26, 2026
Don’t install leaked Windows 11
Tips

Don’t install leaked Windows 11

July 25, 2026
Microsoft announced the end of support date for Windows 10
Tips

Microsoft announced the end of support date for Windows 10

July 24, 2026
Microsoft confirms leaked Windows 11 is real
Tips

Microsoft confirms leaked Windows 11 is real

July 22, 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

Recent News

Some reasons I don’t like Windows 11

Some reasons I don’t like Windows 11

July 27, 2026
Instructions on how to get free Facebook white ticks

Instructions on how to get free Facebook white ticks

July 27, 2026
How to delete hidden files on Samsung phones, free up device space

How to delete hidden files on Samsung phones, free up device space

July 27, 2026
Collection of Windows 11 wallpapers for computers and phones

Collection of Windows 11 wallpapers for computers and phones

July 26, 2026
Some reasons I don’t like Windows 11

Some reasons I don’t like Windows 11

July 27, 2026
Instructions on how to get free Facebook white ticks

Instructions on how to get free Facebook white ticks

July 27, 2026
How to delete hidden files on Samsung phones, free up device space

How to delete hidden files on Samsung phones, free up device space

July 27, 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

Some reasons I don’t like Windows 11

Some reasons I don’t like Windows 11

July 27, 2026
Instructions on how to get free Facebook white ticks

Instructions on how to get free Facebook white ticks

July 27, 2026
  • Home
  • Home 2
  • Home 3
  • Home 4
  • Home 5
  • Home 6
  • Next Dest Page
  • Sample Page

say88 tỷ lệ kèo nhà cái kèo nhà cái 5 febet

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

say88 tỷ lệ kèo nhà cái kèo nhà cái 5 febet

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