Reputation: 2063
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.
Upvotes: 1
Views: 650
Reputation: 948
Just use a Facebook lib then. For example: http://csharpsdk.org/ Just can run these two at the same time.
Upvotes: 0
Reputation: 388
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
Upvotes: 1