skype

Do the UCWA or UCMA APIs support Skype for Business Online?

一世执手 提交于 2019-12-10 18:23:54
问题 We are trying to figure out whether the latest UCWA or UCMA supports Skype for Business Online. After a long search, I saw someone posted in March/April 2015 and said that UCMA/UCWA did not yet support it. But then, I could not find anything about this. Is the latest version able to support it? Where can I find any information about this? 回答1: UCWA is now available for Skype for Business Online. The steps to get your UCWA application registered and authenticated are quite different to using

Can you retrieve your Skype status using JSONP?

删除回忆录丶 提交于 2019-12-10 15:52:10
问题 Does anyone know of a URL to get your Skype status using JSONP? I've only found an XML status URL so far ( http://mystatus.skype.com/username.xml ). (I'm trying to query Skype using AJAX. Yes, I could use a server-side proxy script to beat the cross-domain limits, but a direct call would be awesome.) Simon. 回答1: You might change the headline to 'JSONP' instead of JSON. That's what you want. JSONP hijacks cross domain fetches like this to work, without server proxies, by carrying the data in

Bot Framework Skype for Business channel

你说的曾经没有我的故事 提交于 2019-12-10 12:25:03
问题 I've finally managed to get my bot connected to Skype for Business, however I am having a couple of issues getting it to work. Firstly the bot doesn't seem to be searchable within Skype, you have to enter the full Uri and it only seems to work with the onmicrosoft.com domain, not our own domain. Once you open a Skype chat window by using the bot's full Uri and start a conversation, the bot displays as "presence unknown". This may be related to the first issue I guess. Perhaps it's not fully

Messaging Webhook for Microsoft skype bot

泄露秘密 提交于 2019-12-10 12:03:53
问题 I'm setting up a Microsoft Skype bot, and I want to be able to have it post messages to individual and group chats. I have added a bot at https://developer.microsoft.com/en-us/skype/bots/manage and checked the Messaging checkboxes, but there's a field for "Messaging Webhook", which says "The HTTPS URL to send chat messages and content to. Required if you have a chat capability". What do I put in this field? There's no obvious help link. Do I need to set up an Azure website? 回答1: Solution for

How to get skype status programmatically?

杀马特。学长 韩版系。学妹 提交于 2019-12-10 10:51:23
问题 I want to create a small console application to return current Skype status of the local Skype application if it's running (online / away / do not disturb / invisible / offline) and write history of its changes to the text file. How can I do this? Where to start? 回答1: You can use Skype4Py for this: https://github.com/awahlig/skype4py It has GET/SET USERSTATUS command http://dev.skype.com/desktop-api-reference#COMMANDS 回答2: tl;dr; The status checking URL is gone, your best bet is the API.

Is there a way to access Skype IM logs?

旧时模样 提交于 2019-12-09 04:41:26
问题 I tried looking in C:\Users[name]\AppData\Roaming\Skype and I found a folder called "chatsync" with some mysterious folders with files ending in .dat. I'm almost certain that these are the chat logs but I don't know a way to properly open these files (notepad shows gibberish mixed with English words). I'm not trying to do sleuthing, just a project for my girlfriend. So more importantly: how can I read Skype's .dat files properly? 回答1: http://www.nirsoft.net/utils/skype_log_view.html 回答2:

Skype URI's not Working in iOS 9

十年热恋 提交于 2019-12-08 21:24:13
问题 I had implemented a module for opening Skype app for various modules chat ,call, video call.It was working till iOS 8. Below is link is followed for integration https://msdn.microsoft.com/en-us/library/dn745885.aspx But it stopped working in iOS 9 now. The below code is just opening the App-store searching Skype even when Skype is installed BOOL installed = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"skype:"]]; if(installed) { [[UIApplication sharedApplication]

Skype CDN over SSL

匆匆过客 提交于 2019-12-08 16:39:30
问题 I used to test whether a logged-in user could hit the Skype CDN to determine whether or not to show them UI elements: https://cdn.dev.skype.com/uri/skype-uri.js But it seems like, out of nowhere, their CDN just moved (breaking my code) to here: http://www.skypeassets.com/i/scom/js/skype-uri.js My page is https and I can change the url above to https a la: https://www.skypeassets.com/i/scom/js/skype-uri.js But because there is no valid certificate there I can't connect and the browser doesn't

Detect call state change in VOIP Android apps

谁都会走 提交于 2019-12-07 18:31:15
问题 Is there a way to detect the beginning/ending of voice calls in apps such as Google Hangouts / Skype? (I know this is a shot in the dark, but I was wondering if anyone researched this option). I'm interested in something like Android's receivers for the android.intent.action.PHONE_STATE and the android.intent.action.NEW_OUTGOING_CALL actions 回答1: Skype broadcast: com.skype.android.CONVERSATION_LIVE_STATE There u can read: com.skype.live_identity -> ur friend com.skype.live_status -> RINGING

Skype4Py: messageStatusChanged not always called

浪尽此生 提交于 2019-12-07 18:04:50
问题 I have a Skype bot attached to a working Skype instance in X (Linux). The problem is that the messageStatusChanged event is not always triggered when an incoming message comes. It does in most cases, but sometimes the messages are just "lost". I can see them appearing in the Skype client, but the Skype4Py's event is not triggered for some reason. There's no any difference for these messages in what they contain. Why can that be happening? 回答1: No solution but I investigated this a bit further