0

Is there a way to get hamachi connection statuses on a webpage? I found this link:

This should give a text-based status of the client with the given ip.

But it does not work. I get redirected.

I would like a status I can show using ajax, php and/or html5. No third party applications like flash or java.

4

1 回答 1

0

这是使用 jQuery 的客户端解决方案:

$.get("http://my.hamachi.cc/status/text.php?5.x.x.x", function(data) {
 $('resultDiv').append( data ); 
});
于 2013-02-11T10:45:11.097 回答