Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Need Google Talk API for C#.Net

Tags:

c#

Any one know Google Talk Api for C#.Net?, Please help.

like image 608
chandreshkoyani Avatar asked Aug 17 '11 08:08

chandreshkoyani


2 Answers

Check out Google Talk for Developers.

It uses the Extensible Messaging and Presence Protocol (XMPP) (Originally called Jabber as @kbok mentioned).

There are numerous XMPP libraries available for .NET. The agsXMPP SDK .NET library being one of them.

Here's a tutorial in C# to get you started:

Google Talk (GTalk) Autoreply using .NET

like image 134
Christophe Geers Avatar answered Oct 21 '22 22:10

Christophe Geers


Google Chat uses the Jabber(AKA XMPP) protocol behind the hood. You can find a .NET binding here : http://code.google.com/p/jabber-net/

like image 34
slaphappy Avatar answered Oct 21 '22 20:10

slaphappy