markdown
Must-Read Instructions for Using Facebook 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.
Automation Function Design Description
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 in a specific Facebook group.
Functional Step Breakdown
- Execute Group Member Collection in Facebook.
- Use the fans collected in the first step for User AI Feature Recognition in Facebook to filter out female users.
- Put the data filtered out in the second step into the Bulk Private Messaging task in Facebook.
Scenario 2
Let's change the requirements of the first scenario.
We need to send private messages to female users in a specific Facebook group who have been active in the past week.
Functional Step Breakdown
- Execute Group Member Collection in Facebook.
- Use the fans collected in the first step for User AI Feature Recognition in Facebook to filter out female users.
- Put the data filtered out in the second step into the User Activity Collection task in Facebook to filter out active users.
- Put the data filtered out in the third step into the Bulk Private Messaging task in Facebook.
Scenario 3
Let's change the requirements of the first scenario again.
We need to find female users in a specific Facebook group who have been active in the past week and add them as friends.
Functional Step Breakdown
- Execute Group Member Collection in Facebook.
- Use the fans collected in the first step for User AI Feature Recognition in Facebook to filter out female users.
- Put the data filtered out in the second step into the User Activity Collection task in Facebook to filter out active users.
- Put the data filtered out in the third step into the Bulk Add Friends task in Facebook.
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.