yahoo-messenger

Launch an application using HTML

守給你的承諾、 提交于 2020-01-23 21:13:14
问题 I know that <a href = 'ymsgr:sendim?contactID'>Send me a message</a> will launch Yahoo Messenger. can I create something like this to launch MSWord or my own application? 回答1: Here is an explanation of what you're describing: https://stackoverflow.com/a/16586294/4500419 And here you can find the URI specifications for Microsoft Office: https://msdn.microsoft.com/en-us/library/office/dn906146.aspx#sectionSection4 So, something like ms-word:ofv|u|http://yoursite.com/document.docx Would open

Simple chat bot projects [closed]

谁说我不能喝 提交于 2020-01-11 15:30:12
问题 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 4 years ago . What I want to do is build a simple bot which sends me a set of information stored in database to my messanger chat window [Chatting services are gTalk, Yahoo and other commonly used chating products] Also, it should be capable of accepting few predefined commands and replying them. Is there any opensource code

Simple chat bot projects [closed]

不打扰是莪最后的温柔 提交于 2019-12-02 17:19:16
What I want to do is build a simple bot which sends me a set of information stored in database to my messanger chat window [Chatting services are gTalk, Yahoo and other commonly used chating products] Also, it should be capable of accepting few predefined commands and replying them. Is there any opensource code available for this? Look up AIML (Artificial Intelligence Markup Language), it's been around a number of years and it's pretty well defined and flexible for simple stuff. You can also do pretty sophisticated stuff with all sorts of recursive templates and the results are pretty decent

Yahoo Messenger Library C#

孤者浪人 提交于 2019-11-29 12:27:36
I'm planning to create Yahoo Messenger bot using C#, but until now, I cant find a reliable Yahoo Messenger, except in PHP, Java and C++. Is there a library like this in C#? Well, I just created a working YMSG library for a chat client (not a bot) in C#, so I can tell you there's nothing out there that works for YMSG version 16 for C#. (sorry it's for the company for which I work, I can't release any source) But all is not lost. With the exception of the authentication procedure, the protocol is dirt simple to understand. Two good things: The authentication procedure has been deciphered: http:/

Yahoo Messenger Library C#

…衆ロ難τιáo~ 提交于 2019-11-28 06:26:40
问题 I'm planning to create Yahoo Messenger bot using C#, but until now, I cant find a reliable Yahoo Messenger, except in PHP, Java and C++. Is there a library like this in C#? 回答1: Well, I just created a working YMSG library for a chat client (not a bot) in C#, so I can tell you there's nothing out there that works for YMSG version 16 for C#. (sorry it's for the company for which I work, I can't release any source) But all is not lost. With the exception of the authentication procedure, the