Skip to content

Must-Read Instructions for Using Instagram Features

The system supports automatic creation of AI tasks, or manual creation. To help customers understand the entire process more clearly, we will use manual task creation as an example.

Automated Function Design Instructions

All automated functions in the system are divided into three categories:

  • Group Control
  • Collection
  • Filtering

The operational logic of all automated functions under each category is similar. The purpose of each function is currently kept as independent as possible to facilitate the combination of various functions to achieve personalized effects.

Scenario 1

We need to send private messages to female users among the followers of a certain blogger on Instagram.

Functional Step Breakdown

    1. Execute Follower Collection in Instagram.
    1. Use the followers collected in the first step for User AI Feature Recognition in Instagram to filter out female users.
    1. Put the data filtered out in the second step into the Bulk Private Message task in Instagram.

Scenario 2

Let's change the requirements of the first scenario.

We need to send private messages to female users among the followers of a certain blogger on Instagram, and who have been active in the past week.

Functional Step Breakdown

    1. Execute Follower Collection in Instagram.
    1. Use the followers collected in the first step for User AI Feature Recognition in Instagram to filter out female users.
    1. Put the data filtered out in the second step into the User Activity Collection task in Instagram to filter out active users.
    1. Put the data filtered out in the third step into the Bulk Private Message task in Instagram.

Scenario 3

Let's change the requirements of the first scenario again.

We need to find female users among the followers of a certain blogger on Instagram, and who have been active in the past week, and add them as friends.

Functional Step Breakdown

    1. Execute Follower Collection in Instagram.
    1. Use the followers collected in the first step for User AI Feature Recognition in Instagram to filter out female users.
    1. Put the data filtered out in the second step into the User Activity Collection task in Instagram to filter out active users.
    1. Put the data filtered out in the third step into the Bulk Add Friends task in Instagram.

Summary

The above simple demonstration shows the main logic of the system to complete tasks. We can combine various different functions to achieve many different purposes.