向第三方消息服务(例如 Yahoo、Skype、MSN)发送即时消息
有没有办法将 PHP 代码中的即时消息发送到正式消息服务(例如 Yahoo Messenger、Skype 或 MSN Messenger)?
Is there a way to send an instant message from your PHP code to a formal messaging service like Yahoo Messenger, Skype or MSN messenger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。您可以使用
libpurple
。它有 PHP 绑定。对于 Skype,您将需要他们的 COM 控件。然后,您可以使用PHP 中的 COM 扩展与 Skype 进行交互。
Yes. You can use
libpurple
. It has PHP bindings.For Skype you will need their COM Control. Then you can use the COM extension in PHP to interface with Skype.
请参阅 http://code.google.com/p/phpmsnclass/ 。我想这就是你想要的。
php 的 MSN 类,支持 MSNP9 (MSN 6.2) 和 MSNP15 (WLM 8.1),用作机器人或仅向 MSN 或 Yahoo 发送消息(通过 MSN,您需要 Yahoo 8.1 才能与 MSN 通信)。如果使用 MSNP15,则支持 OIM(离线消息)。
Please refer to http://code.google.com/p/phpmsnclass/ . I think that is what you want.
MSN class for php, support MSNP9 (MSN 6.2) and MSNP15 (WLM 8.1), use as a bot or just send message to MSN or Yahoo (via MSN, you need Yahoo 8.1 to communicate with MSN). Support OIM (offline message) if using MSNP15.