Get Following and Followers values on Twitter profiles, using web scraping.
Add dependencies on your pubspec.yaml
dependencies:
twitter_ff_Values:
git: https://github.com/DevelopersPackages-org/GetFFValuesOnTwitterProfile.git
And import in dart file
import "package:twitter_ff_values/getValues.dart";
Map<String,int> getFFValues(String screenName) async
returns {"Following": valFollowing, "Followers": valFollowers}
, such as {"Following": 10, "Followers": 52}
.
List<Map<String, int>> getFFValuesForIn(List<String> screenNames) async
returns List of result from getFFValues()
for each screenNames.
Forked from DartでWebスクレイピング
Thanks for @tris