Hello,<br><br>I want to check user status from the Skype client instance, but I can&#39;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 = &quot;localhost&quot;;<br>my $port = &quot;8021&quot;;<br>my $pass = &quot;somepass&quot;;<br>my $con  = new ESL::ESLconnection($host, $port, $pass);<br><br>$con-&gt;api(&quot;console loglevel 9&quot;);<br>
my $status = $con-&gt;api(&quot;skypopen sk1 GET USERSTATUS&quot;)-&gt;getBody();<br>print $status;<br>$con-&gt;disconnect();<br><br>Thanks.<br><br><br><br>