您可以使用 JSONP 检索您的 Skype 状态吗?
有谁知道使用 JSONP 获取 Skype 状态的 URL?
到目前为止,我只找到了 XML 状态 URL (http://mystatus.skype.com/username.xml
)。
(我正在尝试使用 AJAX 查询 Skype。是的,我可以使用服务器端代理脚本来突破跨域限制,但直接调用会很棒。)
Simon .
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
显然,您可以通过将扩展名更改为 .txt 来获取状态的纯文本版本:
它将返回“在线”或“离线”。对于跨域AJAX,只能通过服务器来实现,绝对不允许直接调用。
Well apparently you can get a text-only version of the status by changing the extension to .txt:
It will return "Online" or "Offline". About the Cross-domain AJAX, you can only do it via server and direct call is definitely not allowed.
您可以将标题更改为“JSONP”而不是 JSON。这就是你想要的。
JSONP 通过在提取中携带数据来劫持跨域提取,这样无需服务器代理即可工作。这就像我现在想到的最黑客有用的技术。 :)
我向 Skype 抱怨过这一点 - 最简单的方法是让他们的服务器拥有一个官方的、记录在案的 JSONP 接口。我希望他们会这么做。
同时,这就是我解决问题的方法:
将此 PHP 脚本与常用的 HTML 一起放在我的服务器上:http://benalman.com/projects/php-simple-proxy/
编辑了它的配置如下:
这允许它获取(通过在服务器上运行的curl)mystatus.skype.com/myuserid.num(或.txt)信息。
就是这样。唷……:)
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 fetches. It's like the most hackish useful technology I come to mind, right now. :)
I nagged Skype about this - the easiest way out would be for their servers to have an official, documented JSONP interface. I hope they'll do that.
In the mean time, this is how I got the problem solved:
Placed this PHP script on my server, alongside the usual HTML: http://benalman.com/projects/php-simple-proxy/
Edited the configuration of it like so:
This allows it to fetch (via curl running on the server) the mystatus.skype.com/myuserid.num (or .txt) information.
That's it. Pheeew... :)
您也可以使用 PHP 检索它
或
干杯!
感谢来自 http://www.phpbuilder.com/board/showthread 的 Bradgrafelman。 php?t=10361050
Also you can retrieve it using PHP
OR
Cheers!
Thanks to Bradgrafelman from - http://www.phpbuilder.com/board/showthread.php?t=10361050