Questions tagged [hangouts-api]

The Google+ Hangouts API lets users develop collaborative apps that run inside a Google+ Hangout. Developers can write their apps as either a Hangout application or extension.

The Google+ API lets users develop collaborative apps that run inside a Google+ Hangout. Developers can write their apps as either a Hangout application or extension.

References:

135 questions
1
vote
1 answer

Is there a way to show your hangouts status on your own web page in PHP

I've found tutorial on how to link to a hangout but I want to show people inbound that I'm online with hangouts so they can contact me. Is there a way to do this?
BostonMacOSX
  • 1,369
  • 2
  • 17
  • 38
1
vote
1 answer

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…
Adam Zielinski
  • 2,774
  • 1
  • 25
  • 36
1
vote
2 answers

Adding By default Invites in Google Hangout API

I wanted to add dynamic emails in Invite in Google API every time user clicks on Start A Hangout On Air then there will be some emails stored in a dynamic variable that should be joined in hangout session. Please help me figuring out how to do…
0
votes
1 answer

How to validate Hangouts Chat webhook token in C#

I am working on a pretty simple chat bot with an ASP.NET webhook to process responses. I am not having any issues sending or receiving messages, but I am a little bit stuck on validating the Bearer token in the Authorization header in order to…
0
votes
1 answer

Where does the API call from the interactive card in Google Chat go?

I am trying to replicate examples from the Google Docs about Creating interactive cards in Google Chat. I have created a sample link in my card. Sample card with a link "click me" But once I hit "click me" I have no idea where the request goes and…
0
votes
1 answer

Google hangout chat data with out bot

Is there a way to read the data from the chat messages in DM or Group with out adding the bot the DM or Group? Similar to the APIs that are available to programmatically access the google drive, is there a way ?
0
votes
1 answer

How to FInd Google Hangouts Coversation Id

I'm trying to find a conversation id since I want to make a Google Hangouts/Chat bot but I can find it I remember it being there before in the Url but now its gone? I'm Using the 3rd party Hangups API.I know this is a duplicate but no one answered…
OpenSaned
  • 105
  • 1
  • 1
  • 8
0
votes
1 answer

Get name and email of any google directory user via service account

I have a chat bot that connects to the Google People API with a google service account. The bot receives an event that contains the message sender's Google ID (ie 1234567890987654321). I would like to look up the message sender's name and email…
Dave Neeley
  • 3,526
  • 1
  • 24
  • 42
0
votes
1 answer

Why is my first bot message (via REST API) shown before my first thread message?

I am working on a chat bot, that will return a certain piece of information based on the question of the user. The process of obtaining this information will likely take a couple of seconds, and I want to make sure the user is aware of this. I…
0
votes
1 answer

If user DM bot, bot must post that message to a specified room (Hangouts Chat)

This is the code which I got from the template function onMessage(event) { var name = ""; if (event.space.type == "DM") { name = "You"; } else { name = event.user.displayName; } var message = name + " said \"" + event.message.text…
0
votes
1 answer

Hangouts Interactive cards: how to add text fields?

Can we design an interactive card with a text filed? I went through the documentation, i couldn't find any idea on how to create checkbox text field can someone help me in this matter?
Mukund
  • 1,107
  • 2
  • 18
  • 40
0
votes
1 answer

Cannot create Google Hangout Event link with eventNamedHangout for GSuite account

I am trying to create a Google Hangout link and insert it into a calendar event for a GSuite account. From the Google API documentation, I need to use eventNamedHangout as the type of conferenceType but the API responded back with a Google Meet link…
0
votes
0 answers

Hangouts chat API returns 400 for create message of type actionResponse

I trying to post messages using chat python client. Request body should be of type https://developers.google.com/hangouts/chat/reference/rest/v1/spaces.messages?hl=zh-cn#Message. This is my sample code. def callback(message): …
0
votes
1 answer

Hangouts Chat Service Account issues

I am working on setting up a few new bots for Hangouts Chat. Part of the effort involves using Hubot, which is working well. Another use case requires posting to user spaces based on external functions, which is done via a python command script. …
0
votes
1 answer

Google Chat API (G Suite): Request contains an invalid argument (Node JS)

const { google } = require('googleapis') const privatekey = require('./a.json') const scopes = ['https://www.googleapis.com/auth/chat.bot']; const a = async () => { try { const jwtClient = new google.auth.JWT( …
1 2 3
8 9