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 solution for creating a GTalk app in-browser I'd love to hear. but jQuery seems like the best way and Phono even supports the XMPP protocol! So my thought was try here first :)

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

It looks like phono.js is tied to their service. As such, create a user there, add that user to your GTalk roster, and send a message to the GTalk user's Jabber ID (same as their GMail address). The two servers will federate together behind the scenes.

$.phono({
  onReady: function() {
     this.messaging.send("example@gmail.com","Hello");
  }
})
link|improve this answer
feedback

You need strophe javascript library and a book http://professionalxmpp.com. Everything you need is examined in the book. A must read.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.