I am trying to integrate Google Hangout API into my website.
The user wants to:
- Create a hangout
- Copy that URL
- Save that URL in our site
- Display information about hangout
I know that I can get the information I need using: https://www.googleapis.com/plus/v1/activities/{activityId}
What I am struggling with is getting the activity id.
The only solution I see is:
- First somehow find the userid /plus/v1/people?query
- Then list the activities for that person /plus/v1/people/00000/activities/ and match the url
- Then call /plus/v1/activities/
There as to be an easier way surely!