lzomedia / groups.extractor
Lzo Media package for extraction
dev-master
2018-05-20 22:11 UTC
Requires
- php: >=7.0.0
- guzzlehttp/guzzle: ^6.2
- illuminate/support: ^5.4
This package is auto-updated.
Last update: 2022-04-25 16:21:07 UTC
README
#PHP Groups
Our system provides an simple way to extract facebook groups and yahoo groups using developer key for facebook and no key for yahoo
//init the client
$client = new ClientManager();
//start the Yahoo
$socialType = new \LzoMedia\GroupsExtractor\Social\Yahoo\YahooApp();
//set the type of extractor
$typeOfDataToExtract = new YahooGroupExtractor();
//extractor type should be a interface up
$socialType->setExtractorType($typeOfDataToExtract);
// set socialType
$client->setSocialType($socialType);
$groups = ($client->process());
// return groups
return $groups;
Todo
- Task 1 =======
- Implement url for groups
- Add new providers
- Improve speed
- Rest