Just as you can access the widget URL (or web view) directly at https://ediarosms.com/widget , you can as well embed it in your applications or simple HTML webpages.
E.G. Loading the widget into an iframe is demonstrated below:
<iframe src='//ediarosms.com/widget' style='width:100%;height:560px;border:1px solid #bbb;border-radius:3px;'></iframe>
<?php $sub_account='001_mysub1'; $sub_account_pass='pa55w0Rd'; $token=base64_encode($sub_account.':'.$sub_account_pass); $url="http://ediarosms.com/widget/?token=$token"; ?>So for instance, to load the above authenticated url via iframe could be like:
<iframe src='<?php echo $url; ?>' style='width:100%;height:560px;border:1px solid #bbb;border-radius:3px;'></iframe>