"gateway sms"
Bootstrap 3.0.0 Snippet by evarevirus

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html><html lang='en' class=''> <head><script src='//production-assets.codepen.io/assets/editor/live/console_runner-079c09a0e3b9ff743e39ee2d5637b9216b3545af0de366d4b9aad9dc87e26bfd.js'></script><script src='//production-assets.codepen.io/assets/editor/live/events_runner-73716630c22bbc8cff4bd0f07b135f00a0bdc5d14629260c3ec49e5606f98fdd.js'></script><script src='//production-assets.codepen.io/assets/editor/live/css_live_reload_init-2c0dc5167d60a5af3ee189d570b1835129687ea2a61bee3513dee3a50c115a77.js'></script><meta charset='UTF-8'><meta name="robots" content="noindex"><link rel="shortcut icon" type="image/x-icon" href="//production-assets.codepen.io/assets/favicon/favicon-8ea04875e70c4b0bb41da869e81236e54394d63638a1ef12fa558a4a835f1164.ico" /><link rel="mask-icon" type="" href="//production-assets.codepen.io/assets/favicon/logo-pin-f2d2b6d2c61838f7e76325261b7195c27224080bc099486ddd6dccb469b8e8e6.svg" color="#111" /><link rel="canonical" href="https://codepen.io/m-lanser/pen/eRoRyp?depth=everything&order=popularity&page=2&q=send+sms&show_forks=false" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,60'> <style class="cp-pen-styles">body { font-size: 15px; margin: 64px 0; font-family: 'Open Sans', sans-serif; } .navbar { position: fixed; right: 0; left: 0; top: 0; padding: 0 15px; height: 64px; background: #FFF; box-shadow: 0 2px 4px 0 rgba(200, 200, 200, 0.5); z-index: 99; } .navbar .navbar-title { display: inline-block; line-height: 64px; font-size: 28px; } .navbar .navbar-search { display: inline-block; float: right; line-height: 64px; } .navbar .navbar-search input { font-size: 20px; padding: 5px 10px; border-radius: 50px; border: solid 1px #999; } .navigation { position: fixed; top: 64px; bottom: 0; overflow-y: auto; background: #eee; width: 230px; } .navigation ul { list-style-type: none; margin: 15px 0 0 15px; padding: 0; } .navigation ul li { padding: 3px 0; font-weight: 400; margin-top: 10px; } .navigation ul li a { font-weight: 400; color: #999; font-size: 16px; text-decoration: none; } .navigation ul li.indent { margin-left: 17px; margin-top: 0; } .navigation ul li.indent a { color: #000; font-size: 15px; text-decoration: none; } .navigation ul li.active > a { color: #259bdb; } .content { position: fixed; bottom: 0; top: 64px; left: 230px; right: 0; padding: 8px 15px; overflow-y: scroll; } .content h1 { margin: 0; font-weight: 400; font-size: 26px; color: #259bdb; } .content p { margin: 8px 0; font-weight: 400; } </style></head><body> <div class="navbar"> <div class="navbar-title"> <b>SmsGateway</b> API Docs </div> </div> <div class="navigation"> <ul> <li><a href="#intro">General</a></li> <li class="indent"><a href="#intro">Introduction</a></li> <li class="indent"><a href="#intro">Authentication</a></li> <li><a href="#listConversations">Conversations</a></li> <li class="indent"><a href="#listConversations">List conversations</a></li> <li class="indent"><a href="#viewConversation">View conversation</a></li> <li><a href="#listConversations">Messages</a></li> <li class="indent"><a href="#listMessages">List messages</a></li> <li class="indent"><a href="#viewMessage">View message</a></li> <li class="indent"><a href="#sendMessage">Send message</a></li> <li><a href="#viewDevicestatus">Device</a></li> <li class="indent"><a href="#viewDevicestatus">View device status</a></li> </ul> </div> <div class="content"> <h1>Introduction</h1> <p>REST SMS Gateway allows to change your phone into a powerful SMS Gateway which you can control from a computer.</p> <p>To browse existing messages or send now one you need to use special commands. For this purpose we decided to use a well know REST approach. If you know REST you can go to section REST API and start your adventure. On the other hand, if you haven't heard of REST, we recommend to read one of many tutorials available online first.</p> <p>To make your work easier we prepared a library written in Python and two exemplary scripts which uses this library (see section Usage examples). The first example shows how to runs all functions, while the second sends messages from a file.</p> <p>All commands are sent to an address showed by the app (after pressing button Start). The IP address varies whether you are connected to WiFi (e.g. http://192.168.1.101:8080/) or not (http://127.0.0.1:8080/). The port is always 8080.</p> <br /> <br /> <h1 id="listConversations">List conversations</h1> <p>List threads (also know as conversations) available in the mobile phone. The list starts with the recently updated threads.</p> <br /> <br /> <h1 id="viewConversation">View conversation</h1> <p>View messages in a thread with a given thread_id. To get thread_id run /v1/thread/.</p> <br /> <br /> <h1>List messages</h1> <p>List SMS. The list starts with the newest messages.</p> <br /> <br /> <h1>View message</h1> <p>View SMS with a given sms_id. To get sms_id run /v1/sms/ or /v1/thread/ <thread_id>/.</p> <br /> <br /> <h1>Send message</h1> <p>Send SMS. Text from field message is sent to phone with a number from field phone. Remember that you may be charged for each SMS that you send. Please, use this option wisely.</p> <br /> <br /> </div> <script src='//production-assets.codepen.io/assets/common/stopExecutionOnTimeout-b2a7b3fe212eaa732349046d8416e00a9dec26eb7fd347590fbced3ab38af52e.js'></script><script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script><script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script> <script >$(document).ready(function() { $("a").on("click", function(event) { if (this.hash !== "") { event.preventDefault(); var hash = this.hash; $(".content").animate({ scrollTop: $(hash).offset().top }, 800); }; }); }); //# sourceURL=pen.js </script> </body></html>

Related: See More


Questions / Comments: