如何使用Skype API创建应用程序

问题描述:

你好专家!

我正在编写一个与集成skype(聊天,语音,视频)相关的项目。我搜索并找到了支持此功能的API(Skype4comlib.dll)。但登录,聊天,呼叫语音,呼叫视频必须有客户端Skype的参与。这让我很烦恼。

如果有人知道或练习过这个,请帮助我。非常感谢!

------------------------------------

这是我当前的登录代码:

hello expert!
I'm coding for a project relating to integration skype (chat, voice, video). I searched and found a API supporting this (Skype4comlib.dll). But logging in, chatting, calling voice, calling video must have the participation of client skype. This make me so much troubles.
If anyone knew or practiced this, please help me. thank so much!
------------------------------------
this is my current loggin code:

void InitSkype(string userName, string pass)
{
   System.Diagnostics.Process process = new System.Diagnostics.Process();
   System.Diagnostics.ProcessStartInfo startInfo = new                    System.Diagnostics.ProcessStartInfo();
            startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Minimized;
            startInfo.FileName = "Skype.exe";
            startInfo.Arguments = "/C /username:" + userName + " /password:" + pass;
            process.StartInfo = startInfo;
            process.Start();
        }

从这里开始:软件开发 [ ^ ]