Ecosyste.ms: Awesome
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: 10 days ago
JSON representation
This php package helps to create hangouts groups and monitor its members
- Host: GitHub
- URL: https://github.com/lsndr/hangoutsgroups
- Owner: lsndr
- Created: 2017-03-13T08:33:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-13T08:35:09.000Z (almost 8 years ago)
- Last Synced: 2025-01-01T02:19:53.897Z (10 days ago)
- Language: PHP
- Homepage: http://lisand.ru
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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