The current get participants feature grabs participants information directly from the get participants API.
However, many admins choose to hide participants information in their groups. This makes this feature useless.
Implement a feature that iterates through the messages, grabs the message sender's user ID, and get their information via a different API.
Example usage
python scrape.py --get-participants # outputs log message saying that this group hides participants information and that this must be ran with --get-messages
python scrape.py --get-messages --get-participants # correct usage. Iterates through the collected messages and grabs participant information from there
We'll worry about duplicated data later... Just get this done for now
The current
get participants
feature grabs participants information directly from the get participants API. However, many admins choose to hide participants information in their groups. This makes this feature useless.Implement a feature that iterates through the messages, grabs the message sender's user ID, and get their information via a different API.
Example usage
We'll worry about duplicated data later... Just get this done for now