Find twitter users by (name, handle, bio, location, followers, following count or verified).
By using Twitter API, The application starts with one user and finds in his (followers/following) any account that matches the search criteria and continues recursively with the matched users.
-
By using Twitter-API endpoints
- tw-api/followers/ids.json
- tw-api/friends/ids.json
And collect the metadata for twitter users
-
Apply the search criteria on the coming users.
- Any sub-route under configuration
SEARCH_CRITERIA
will consider as an and condition - Any option in the sub-routes use or condition
- Any sub-route under configuration
- All Users in Berlin have in them bio (Developer, Software or Engineer)
"SEARCH_CRITERIA": {
"SEARCH_BIO_CONTEXT": [
"Developer",
"Software",
"Engineer"
],
"SEARCH_LOCATION_CONTEXT": [
"Berlin"
]
}
- All Users in Silicon Valley have in them bio (CEO or CTO) and have a verified account
"SEARCH_CRITERIA": {
"SEARCH_BIO_CONTEXT": [
"CEO",
"CTO"
],
"SEARCH_LOCATION_CONTEXT": [
"Silicon Valley"
],
"VERIFIED": true
}
- All Users have in them NAME (dr) and have more then 1000000 FOLLOWERS
"SEARCH_CRITERIA": {
"SEARCH_NAME_CONTEXT": [
"dr"
],
"FOLLOWERS_COUNT_BETWEEN": {
"FROM": 1000000
}
}
- Use the prebuilt binary in for Windows Users, Download the binary from
- Use the configuration file to configure the app (download from ) Update it with your twitter credentials in
config.json
- Update the
SEARCH_CRITERIA
in with your search criteria. - run the application
- the result will be in result directory
- Use the prebuilt binary in for Ubuntu Users, Download the binary from
- Use the configuration file to configure the app (download from ) Update it with your twitter credentials in
config.json
- Update the
SEARCH_CRITERIA
in with your search criteria. - run the application
- the result will be in result directory
twfinder build in golang, compile it with golang 13.0 or later
- Build the application by run
go build .
- Update the configuration file with your twitter credentials
- Update the
SEARCH_CRITERIA
in with your search criteria. - run the application
- the result will be in result directory