Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Feedback required error when unfollowing private accounts #61

@ciprinicu

Description

@ciprinicu
IgActionSpamError: 
POST /api/v1/friendships/destroy/9843433755/ - 400 Bad Request; feedback_required

Code I wrote:

var ulist = [];
    await getFollowing(ig, "##########").then(async () => {
        setTimeout(async function () {
            await readFollowing(ig, "##########").then(l => {
                setTimeout(function () {
                    ulist = l
                    var i = 0;
                    function loop() {
                        setTimeout(async function () {
                            console.log("Unfollowing " + ulist[i].username)
                            await unfollowUser(ig, ulist[i].username).then(() => {
                                console.log("")
                            });
                            i++
                            if (i < ulist.length) {
                                loop();
                            }
                        }, 1500);
                    }
                    loop()
                }, 10000)
            });
        }, 10000)
    });```

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions