Hamachi client status on webpage

647 Views Asked by At

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.

1

There are 1 best solutions below

1
On

this is client side solution using jQuery:

$.get("http://my.hamachi.cc/status/text.php?5.x.x.x", function(data) {
 $('resultDiv').append( data ); 
});