Questions tagged [google-talk]

is an XMPP based web chat service provided by Google and the name of its official client.

Google Talk is an instant messaging service that provides both text and voice communication.

Google Talk is also the name of the client applications offered by Google to access the service. Google Talk applications are available for Microsoft Windows (XP, Server 2003, Vista, and Windows 7), Android, Blackberry, and Google Chrome OS operating systems.

Because the Google Talk servers communicate with clients using an open protocol, XMPP, the service can also be accessed using any other client that supports XMPP. Such clients are available for a number of operating systems not supported by the Google Talk client. VoIP in Google Talk uses an older version of what became the Jingle protocol. The technology used within the Google server network, however, is not publicly known.

Source: Wikipedia (Google Talk)

268 questions
2
votes
0 answers

Google Analytics 4 Consent Mode: update status and fire tag

need a piece of advice/solution regarding GA4 Consent Mode. A few CMS systems have installed their own Consent Plugins with their advantages and disadvantages. But with the same principle - they block cookies and scripts till they receive user…
2
votes
1 answer

Integrating Google Talk to web app using strophe.js and punjab

I'm trying to integrate Google Talk (a.k.a. gtalk) into my web app. It's going to be a tight integration, so Google Talk chatback badge, and embedding Google's flash based web client using an iframe won't do the job. I'll probably need to build the…
woran
  • 1,317
  • 2
  • 16
  • 22
2
votes
1 answer

Creating an XMPP GTalk chat app with jQuery/Phono

So I've been working with phono.js which is an amazing new jQuery library. It supports XMPP client chats, so I'm looking for a way to setup live chats with GTalk accounts. The documentation isn't really supported very well... If anybody has a better…
Jake
  • 1,285
  • 11
  • 40
  • 119
2
votes
1 answer

XMPP and libjingle connection using IP address

I am developing a P2P application where UserA knows UserB's IP address and request a connection. It is not possible to log-in to any Google Talk or similar account, we have to use just the IP address. Then, is it true that I cannot use XMPP API or…
user411103
2
votes
1 answer

Adding Instant Messaging (possibly XMPP) to my website on AppEngine (without using Google Login IDs)

I have developed a dating website built on top of the Google App Engine, to which I would like to add instant messaging, and possibly/probably audio and video conferencing. Given that the users on the website do not want to share their personal…
2
votes
1 answer

libjingle's XmppPump compilation problem

I just started coding a gtalk chat bot using libjingle. I'm having a problem getting the compiler to find the XmppClient class called by XmppPump class. The XmppClient is provided by libjingle in the talk/xmpp/xmppclient.h file, but for some reason…
nikeairj
  • 173
  • 10
2
votes
2 answers

Handle google talk message using Ruby

Is there any library that allows to handle google talk messages using Ruby?
Alexey Zakharov
  • 24,694
  • 42
  • 126
  • 197
2
votes
1 answer

How can I retrieve a Google Talk users Status Message

I'd like to be able to retrieve a users Google Talk Status Message with Python, it's really hard to find documentation on how to use some of the libraries out there.
user286355
2
votes
4 answers

Using XMPP over GTalk to simulate push notifications

I'm currently writing an Android application that should be able to receive push notifications from another application hosted in Google's App Engine. Since I can't use sockets in GAE, I though maybe using XMPP over GTalk server would solve my…
Telmo Marques
  • 5,066
  • 1
  • 24
  • 34
2
votes
3 answers

How to send invitation to gtalk contact with smack java library?

How to send invitation to gtalk contact with smack java library?
yura
  • 14,489
  • 21
  • 77
  • 126
2
votes
2 answers

XMPP Gtalk javascript

I want to create browser widget for gtalk. I need to know about XMPP and its javascript support. Can anyone guide me in this process. Thanks in advance.
mohit
  • 1,011
  • 2
  • 16
  • 26
2
votes
1 answer

Android smack 4.1 issue with connection

I'm trying to make a connection with GoogleTalk in android using Smack. I've followed numerous tutorials examples on the internet yet still I can't seem to make it work. public static final String HOST = "talk.google.com"; public static final int…
Sharp Edge
  • 4,144
  • 2
  • 27
  • 41
2
votes
3 answers

How to notify the user about received GTalk chats when the app is not running

I implemented a chat client using GTalk servers and (a)Smack library. So far so good. Now, what I can't wrap my head around is how to notify the user of received chats when the app is closed, the same way all other chat apps do. I was reading into…
kaqqao
  • 12,984
  • 10
  • 64
  • 118
2
votes
1 answer

How can I get username of a gtalk user using XMPP with google appengine?

I am using google appengine for my gtalk agent , I want to get the username of the gtalk user how can I get it ? for your reference, check this XMPPService xmpp = XMPPServiceFactory.getXMPPService(); //STEP 2 Message msg =…
srivigneshwar
  • 61
  • 1
  • 4
2
votes
1 answer

Retrieve Offline Messages and Chat History From Google Talk in Java

I have to retrieve offline messages from Google Talk for a particular client (friend/ XMPP Client) with whom I have had a conversationn with. Additionally, I want to retrieve the chat history. Right now, I am using a Hash Map to keep track of the…