Hi to everybody,
first of all sorry for my English…
I’m very interesting to change my snom phones (320 and 370) with Digium phones (D50 and D70). I have written an addressbook in php/mysql. When a user founds a number to call in the addressbook, he click a button and the call starts from the phone on the user’s desktop. It is possible because snom 320/370 accept some command via http:
-
to make a call: “http://username:password@phone_ip/command.htm?number=DISPLAY_NAME<NUMBER_TO_DIAL>”
-
to hangup: “http://username:password@phone_ip/command.htm?key=CANCEL”
-
to transfer a call: "http://username:password@phone_ip/command.htm?key=TRANSFER"
AND then “http://username:password@phone_ip/command.htm?key_dtmf=NUMBER_TO_TRANSFER”
All this commands are send to the snom phones using php curl command ($url is one of the above commands):
$handle = curl_init($url);
curl_setopt($handle, CURLOPT_HEADER, FALSE);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, FALSE);
curl_exec($handle);
curl_close($handle);
Is possible to do that with digium phone D40 , D50 and D70 ?
If is possible, where can I find a list of commands accepted by digium phones ?
Thanks a lot…
Zeuxnet