Need Google Talk API for C # .Net

Does anyone know Google Talk Api for C # .Net ?, Please help.

+6
source share
3 answers

Check out Google Talk for developers .

It uses the Advanced Messaging and Presence Protocol (XMPP) (originally called Jabber as mentioned by @kbok).

There are many XMPP libraries for .NET. The agsXMPP SDK.NET library is one of them.

Here is a C # tutorial to get you started:

Google Talk (GTalk) Autoreply using .NET

+2
source

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

+1
source

This project uses Jabber.net to access Google chat. That should get you started.

+1
source

Source: https://habr.com/ru/post/895227/


All Articles