Automatically like Facebook profile picture updates
Before you run the program, you need to provide your username, password and 2FA seed in appsettings.json file.
Read this article, if you don't know how to get 2FA seed.
If you don't want to automatically like certain users profile picture updates, you can add users in "ExcludedUsers" list.
{
...
"IncludeUsers": [],
"ExcludedUsers": [
"FirstName LastName"
]
}
You can also add users in "IncludeUsers" list, so app will only like provided users profile picture updates.
{
...
"IncludeUsers": [
"FirstName LastName"
],
"ExcludedUsers": [
]
}