Hello,<br><br>I want to check user status from the Skype client instance, but I can't see Skype API answers from it. How to fix this?<br>Script example:<br><br>#!/usr/bin/perl<br>use strict;<br>use warnings;<br>require ESL;<br>
<br>my $host = "localhost";<br>my $port = "8021";<br>my $pass = "somepass";<br>my $con = new ESL::ESLconnection($host, $port, $pass);<br><br>$con->api("console loglevel 9");<br>
my $status = $con->api("skypopen sk1 GET USERSTATUS")->getBody();<br>print $status;<br>$con->disconnect();<br><br>Thanks.<br><br><br><br>