An open API service indexing awesome lists of open source software.

https://github.com/lsndr/hangoutsgroups

This php package helps to create hangouts groups and monitor its members
https://github.com/lsndr/hangoutsgroups

Last synced: 5 months ago
JSON representation

This php package helps to create hangouts groups and monitor its members

Awesome Lists containing this project

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