C# SKYPE4COMLib Facebook

664 Views Asked by At

I'm making SkypeBot and I want respond also to Facebook messages. I'm using SKYPE4COMLib. But it works only for skype protocol.

skype.MessageStatus += new _ISkypeEvents_MessageStatusEventHandler(skype_MessageStatus);

// in event
skype.SendMessage(msg.Sender.Handle, message);

Or can I make it simply by SkypeKitNET?

Thanks for responds.

3

There are 3 best solutions below

1
On

Just use a Facebook lib then. For example: http://csharpsdk.org/ Just can run these two at the same time.

0
On

if the Facebook account has been tied to the Skype account then Facebook messages are received in the Skype client the same as other messages and these can be addressed in the same way as normal Skype messages.

Its worth noting that server implimentations of the desktop API are likely prohibited int the Skype terms of use.

SkypeKit specifically prohibits any server implimentations in the licence agreement

0
On

I used XMPP library agsXMPP SDK for .NET C# Thanks for responds.