skype

How do I attach to Skype using Skype4Java?

馋奶兔 提交于 2019-12-23 17:52:35
问题 I am getting the following exception when trying to run the MakeCall example code: com.skype.NotAttachedException at com.skype.Utils.convertToSkypeException(Utils.java:36) at com.skype.Skype.setDebug(Skype.java:116) at com.skype.sample.MakeCall.main(MakeCall.java:26) Caused by: com.skype.connector.NotAttachedException at com.skype.connector.Connector.assureAttached(Connector.java:580) at com.skype.connector.Connector.addConnectorListener(Connector.java:604) at com.skype.connector.Connector

Get Skype voice notes in a bot

吃可爱长大的小学妹 提交于 2019-12-23 04:52:15
问题 I am developing a bot in C# for Skype and my problem is that I would like to transform the voice notes that can be sent by the phone (with the icon of the microphone) in text and I can't get that audio. In the properties of the activity.attachment that I receive I have seen the following: ContentType: audio Content: ContentURL: https://smba.trafficmanager.net/apis/v3/attachments/0-weu-d9-734cab9e78c28a1619a39ce8c69342d1/views/original Name: 2-audioMessage.m4a Properties: {} ThumbnailUrl:

Skype/MSN/Yahoo icon for online/offline status [closed]

旧时模样 提交于 2019-12-23 03:30:48
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I want to show skype/msn/yahoo icons that show the online status in my ASP.NET website. The purpose is that user can click the online icon and can directly chat if he's online on skype/msn/yahoo. 回答1: visit those links for skype status button http://www.skype.com/intl/en-us/tell-a-friend/get-a-skype-button/ for

Skype login from C# form

限于喜欢 提交于 2019-12-22 18:10:12
问题 I didn't find out how to login from a form in C# to Skype. Is there a possibility to do that? e.g. I type my username and password in a form and when I click sign in, an instance of skype will launch and log me with my credentials. Thanks a lot! 回答1: You can launch skype with command-line arguments like this: skype.exe /username:your.username /password:your.password Found reference here, and tested working on my machine (Skype 5.1). It seems this is not officially documented, so it may

no more local Skype Logs?

浪子不回头ぞ 提交于 2019-12-22 12:48:27
问题 Had quite an oddyssey tracking down the current location of the Skype data (found it in %AppData%/Local/Packages/Microsoft.SkypeApp\_<somehashcode>_/LocalState/<somegibberish>_<myskypeusername>.db ). A little more research to find out that it´s a SQLite database; installed SQLite Browser; found all my contacts but no actual chat log. Tried other files in the subdirectory LocalState/DataRv without any satisfying results. Well, I wouldn´t wonder if there were no more local log files at all; but

COM interface wrappers in PowerShell?

☆樱花仙子☆ 提交于 2019-12-21 17:52:16
问题 I have the following code in C# which I try to port to PowerShell. But I don't know how to port this cast: ((_ISkypeEvents_Event)skype).CallStatus += CallStatusHandler; If I just type [Skype4COM.ISkypeEvents_Event] in my PowerShell console I get: Unable to find type [Skype4COM.ISkypeEvents_Event]: make sure that the assembly containing this type is loaded. However, I can get all the members of the $skype object: $skype = New-Object -ComObject Skype4COM.Skype The following line doesn't work:

How can I alert Skype chatrooms with Jenkins build status?

时光总嘲笑我的痴心妄想 提交于 2019-12-21 04:20:09
问题 Our company uses Skype for communications, and I'd like to be able to send alerts to Skype chatrooms when a Jenkins build fails (and when it recovers too). How can I do this? 回答1: I've done this using the Skype Public API What I did was write a Perl script which uses the SkypeAPI CPAN module to handle the communications with Skype. It's a little clunky, as the script needs to run on a desktop which is running Skype. I run it on my own desktop which is always on anyway, but this does mean the

Is it still possible to get Skype's user online status?

家住魔仙堡 提交于 2019-12-20 19:39:29
问题 As the title says, is it still possible to check a user's status (online, offline, busy...) on Skype after the (big) change in its API service? Developers section seems very very limited now: http://developer.skype.com/ 回答1: Yes there is. There are some urls wich can be used to detect the online status. This gives a text with the statusname (e.g. away or online) http://mystatus.skype.com/SKYPENAME.txt This gives you a numeric skype statuscode (see list below) http://mystatus.skype.com

Send messages to Skype “group” chat from .NET?

久未见 提交于 2019-12-20 17:34:57
问题 Is there an easy way to send group chat messages to Skype from .NET? I don't need to respond to any commands or anything, so it doesn't need to be a BOT. Basically, I would run this program on a dedicated box with Skype running as a special user and I would have it report certain information to a specific group chat. I understand there is a Skype COM library. I have seen examples based on that but I haven't been able to get any traction. 回答1: The currently available Skype API for Windows uses

i am getting error while using skype gradle dependencies in liferay portlet

一世执手 提交于 2019-12-20 07:37:08
问题 I am developing a project in Liferay portlet where I have to use skype Gradle dependencies to send a message on skype group. I put the dependencies (compile group: 'com.github.taksan', name: 'skype-java-API', version: '1.7') in build.gradle and deployed. It's working fine. But whenever I import or use the skype package, I am getting an error like Unresolved requirement: Import-Package: com.skype_ [Sanitized] how to resolve this problem and if possible could you give me a code or suggestion?