Files
VSC/Web/webphone/samples/minimal_example.html
claudio 368d6fafea Issue
Code backup
2026-05-10 16:59:01 +02:00

35 lines
1.3 KiB
HTML

<!DOCTYPE html>
<!--
The shortest example of initiating an outgoing call using the webphone -->
Replace the parameters below in upper-case with your settings and/or use any other parameters!
-->
<html>
<head>
<meta charset="utf-8" />
<title>Outgoing Call Example</title>
<script src="../webphone_api.js?jscodeversion=523"></script>
</head>
<body spellcheck="false">
<div>This is the simplest example to demonstrate how initiate an outgoing call.<br />Don't use this in production as it is not a complete implementation.<br /><br /><br /></div>
<button id="btn_call" onclick="webphone_api.call('DESTINATION')">Call</button>
<button id="btn_hangup" onclick="webphone_api.hangup()">Hangup</button>
<iframe allow="microphone *; camera *; autoplay *" allowfullscreen="true" style="display:none" height="0" width="0" id="loader"></iframe>
<script>
webphone_api.onAppStateChange(function (state)
{
if (state === 'loaded')
{
webphone_api.setparameter('serveraddress', 'YOURSIPDOMAIN.COM', false);
webphone_api.setparameter('username', 'USERNAME', false);
webphone_api.setparameter('password', 'PASSWORD', false);
webphone_api.start();
}
});
</script>
</body>
</html>