Search code examples
javascriptgoogle-hangoutshangouts-api

How to create a public "start hangout" button without using JS api?


I need to create a new public hangout with my app included. I do not want to use their JS api, so I just redirect user to the following URL:

https://plus.google.com/hangouts/_?gid=(my-app-id)

It works great with one exception - the newly created hangout is private and requires invitations. I want to make it "public" - so anyone with the link may join it. How do I do it?


Solution

  • Schedule an Event for a date far in the future, set it as a Hangout Event, and get the Hangout URL from your calendar. That Hangout URL can have the gid appended to it, and will be a persistent Hangout URL.

    You can create the event from here.

    Hope this helps!