lisand7ru / hangoutsgroups
The package helps to create hangouts groups and monitor its members
v1.0
2017-03-13 08:31 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: >=6
This package is not auto-updated.
Last update: 2025-04-21 16:21:30 UTC
README
This package helps to create hangouts groups and monitor their members
How to install?
composer require lisand7ru/hangoutsgroups
Creating a group
$groupsManager = new GroupsManger('my_cookies');
$group = $groupsManager->create();
Monitoring
$link = $group->getLink(); //returns a link on your group
$members = $group->getMembers(); //returns an array of members (id, name, picture)
Where to get the cookies?
- visit hangouts.google.com and auth there
- via Developers Tools take a value of header param "Cookies:" and pass it to the GroupsManager's controller