index.gohtml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. {{- /*gotype: heckel.io/ntfy/server.indexPage*/ -}}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>ntfy.sh | PUT/POST push notifications to your phone</title>
  7. <link rel="stylesheet" href="static/css/app.css" type="text/css">
  8. <!-- Mobile view -->
  9. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  11. <meta name="HandheldFriendly" content="true">
  12. <!-- Mobile browsers, background color -->
  13. <meta name="theme-color" content="#317f6f">
  14. <meta name="msapplication-navbutton-color" content="#317f6f">
  15. <meta name="apple-mobile-web-app-status-bar-style" content="#317f6f">
  16. <!-- Favicon, see favicon.io -->
  17. <link rel="icon" type="image/png" href="static/img/favicon.png">
  18. <!-- Previews in Google, Slack, WhatsApp, etc. -->
  19. <meta property="og:type" content="website" />
  20. <meta property="og:locale" content="en_US" />
  21. <meta property="og:site_name" content="ntfy.sh" />
  22. <meta property="og:title" content="ntfy.sh | send push notifications to your phone or desktop via PUT/POST" />
  23. <meta property="og:description" content="ntfy is a simple HTTP-based pub-sub notification service. It allows you to send desktop notifications via scripts from any computer, entirely without signup or cost. Made with ❤ by Philipp C. Heckel, Apache License 2.0, source at https://heckel.io/ntfy." />
  24. <meta property="og:image" content="/static/img/ntfy.png" />
  25. <meta property="og:url" content="https://ntfy.sh" />
  26. {{if .Topic}}
  27. <!-- Never index topic page -->
  28. <meta name="robots" content="noindex, nofollow" />
  29. {{end}}
  30. </head>
  31. <body>
  32. <nav id="header">
  33. <div id="headerBox">
  34. <img id="logo" src="static/img/ntfy.png" alt="logo"/>
  35. <div id="name">ntfy.sh</div>
  36. <ol>
  37. <li><a href="docs/">Getting started</a></li>
  38. <li><a href="docs/subscribe/phone/">Android/iOS</a></li>
  39. <li><a href="docs/publish/">API</a></li>
  40. <li><a href="docs/install/">Self-hosting</a></li>
  41. </ol>
  42. </div>
  43. </nav>
  44. <div id="main"{{if .Topic}} style="display: none"{{end}}>
  45. <h1>Send push notifications to your phone or desktop via PUT/POST</h1>
  46. <p>
  47. <b>ntfy</b> (pronounce: <i>notify</i>) is a simple HTTP-based <a href="https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern">pub-sub</a> notification service.
  48. It allows you to send notifications to your phone or desktop via scripts from any computer,
  49. entirely <b>without signup, cost or setup</b>. It's also <a href="https://github.com/binwiederhier/ntfy">open source</a> if you want to run your own.
  50. </p>
  51. <div id="screenshots">
  52. <a href="static/img/screenshot-curl.png"><img src="static/img/screenshot-curl.png"/></a>
  53. <a href="static/img/screenshot-web-detail.png"><img src="static/img/screenshot-web-detail.png"/></a>
  54. <span class="nowrap">
  55. <a href="static/img/screenshot-phone-main.jpg"><img src="static/img/screenshot-phone-main.jpg"/></a>
  56. <a href="static/img/screenshot-phone-detail.jpg"><img src="static/img/screenshot-phone-detail.jpg"/></a>
  57. <a href="static/img/screenshot-phone-notification.jpg"><img src="static/img/screenshot-phone-notification.jpg"/></a>
  58. </span>
  59. </div>
  60. <p>
  61. There are many ways to use it: Notify yourself when a build finishes, when an rsync is done or a backup fails,
  62. or know when somebody logs into your server. There are <a href="#examples">many more examples</a>, endless possibilities 😀.
  63. </p>
  64. <h2 id="publish" class="anchor">Publishing messages</h2>
  65. <p>
  66. Publishing messages can be done via PUT or POST. Topics are created on the fly by subscribing or publishing to them.
  67. Because there is no sign-up, <b>the topic is essentially a password</b>, so pick something that's not easily guessable.
  68. </p>
  69. <p class="smallMarginBottom">
  70. Here's an example showing how to publish a message using a POST request (via <tt>curl -d</tt>):
  71. </p>
  72. <code>
  73. curl -d "Backup successful 😀" <span class="ntfyUrl">ntfy.sh</span>/mytopic
  74. </code>
  75. <p class="smallMarginBottom">
  76. There are <a href="docs/publish/">more features</a> related to publishing messages: You can set a
  77. <a href="#docs/publish/#message-priority">notification priority</a>, a <a href="docs/publish/#message-title">title</a>,
  78. and <a href="docs/publish/#tags--emojis--">tag messages</a>.
  79. Here's an example using all of them:
  80. </p>
  81. <code>
  82. curl \<br/>
  83. &nbsp;&nbsp;-H "Title: Unauthorized access detected" \<br/>
  84. &nbsp;&nbsp;-H "Priority: urgent" \<br/>
  85. &nbsp;&nbsp;-H "Tags: warning,skull" \<br/>
  86. &nbsp;&nbsp;-d "Remote access to $(hostname) detected. Act right away." \<br/>
  87. &nbsp;&nbsp;<span class="ntfyUrl">ntfy.sh</span>/mytopic
  88. </code>
  89. <h2 id="subscribe" class="anchor">Subscribe to a topic</h2>
  90. <p>
  91. You can create and subscribe to a topic either <a href="docs/subscribe/phone/">using your phone</a>,
  92. in <a href="docs/subscribe/web/">this web UI</a>, or in your own app by <a href="docs/subscribe/api/">subscribing via the API</a>.
  93. </p>
  94. <h3 id="subscribe-phone" class="anchor">Subscribe from your phone</h3>
  95. <p>
  96. Simply get the app and start <a href="docs/publish/">publishing messages</a>. To learn more about the app,
  97. <a href="docs/subscribe/phone/">check out the documentation</a>.
  98. </p>
  99. <p>
  100. <a href="https://play.google.com/store/apps/details?id=io.heckel.ntfy"><img src="static/img/badge-googleplay.png"></a>
  101. <a href="https://f-droid.org/en/packages/io.heckel.ntfy/"><img src="static/img/badge-fdroid.png"></a>
  102. <a href="https://github.com/binwiederhier/ntfy/issues/4"><img src="static/img/badge-appstore.png"></a>
  103. </p>
  104. <figure>
  105. <video controls muted autoplay loop width="650" src="static/img/android-video-overview.mp4"></video>
  106. <figcaption>Sending push notifications to your Android phone</figcaption>
  107. </figure>
  108. <div id="subscribeBox">
  109. <h3 id="subscribe-web" class="anchor">Subscribe in this Web UI</h3>
  110. <p id="error"></p>
  111. <p>
  112. Subscribe to topics here and receive messages as <b>desktop notification</b>. Topics are not password-protected,
  113. so choose a name that's not easy to guess.
  114. </p>
  115. <form id="subscribeForm">
  116. <p>
  117. <b>Topic:</b><br/>
  118. <input type="text" id="topicField" autocomplete="off" placeholder="Topic name, e.g. phil_alerts" maxlength="64" pattern="[-_A-Za-z0-9]{1,64}" />
  119. <button id="subscribeButton">Subscribe</button>
  120. </p>
  121. <p id="topicsHeader"><b>Subscribed topics:</b></p>
  122. <ul id="topicsList"></ul>
  123. </form>
  124. <audio id="notifySound" src="static/sound/mixkit-message-pop-alert-2354.mp3"></audio>
  125. </div>
  126. <h3 id="subscribe-api" class="anchor">Subscribe using the API</h3>
  127. <p>
  128. There's a super simple API that you can use to integrate your own app. You can consume
  129. a <a href="docs/subscribe/api/#subscribe-as-json-stream">JSON stream</a>,
  130. an <a href="docs/subscribe/api/#subscribe-as-sse-stream">SSE/EventSource stream</a> (useful for web apps),
  131. as well as a <a href="docs/subscribe/api/#subscribe-as-raw-stream">plain text stream</a>.
  132. </p>
  133. <p class="smallMarginBottom">
  134. Here's an example for JSON. Note that <b>the connection stays open</b>, so you can retrieve messages as they come in:
  135. </p>
  136. <code>
  137. $ curl -s <span class="ntfyUrl">ntfy.sh</span>/mytopic/json<br/>
  138. {"id":"SLiKI64DOt","time":1635528757,"event":"open","topic":"mytopic"}<br/>
  139. {"id":"hwQ2YpKdmg","time":1635528741,"event":"message","topic":"mytopic","message":"Hi!"}<br/>
  140. {"id":"DGUDShMCsc","time":1635528787,"event":"keepalive","topic":"mytopic"}<br/>
  141. ...
  142. </code>
  143. <p>
  144. <script id="asciicast-453771" src="https://asciinema.org/a/453771.js" async></script>
  145. </p>
  146. <h3 id="more" class="anchor">More, more, more!</h3>
  147. <p>
  148. ntfy has so <a href="docs/">many more features</a> and you can learn about all of them <a href="docs/">in the documentation</a>
  149. (I tried my very best to make it the best docs ever 😉, not sure if I succeeded, hehe).
  150. </p>
  151. <a href="docs/"><img width="100%" src="static/img/screenshot-docs.png"/></a>
  152. <h3 id="free-software" class="anchor">Forever free, forever 100% free software</h3>
  153. <p>
  154. I love free software, and I'm doing this because it's fun. I have no bad intentions, and I will
  155. never monetize or sell your information. This service will always stay free and open. You can
  156. read more in the <a href="docs/faq/">FAQs</a> and in the <a href="docs/privacy/">privacy policy</a>.
  157. </p>
  158. <center id="ironicCenterTagDontFreakOut"><i>Made with ❤️ by <a href="https://heckel.io">Philipp C. Heckel</a></i></center>
  159. </div>
  160. <div id="detail"{{if not .Topic}} style="display: none"{{end}}>
  161. <div id="detailMain">
  162. <button id="detailCloseButton"><img src="static/img/close.svg"/></button>
  163. <h1><span id="detailTitle"></span></h1>
  164. <p class="smallMarginBottom">
  165. <b>ntfy</b> is a simple HTTP-based pub-sub notification service. This is a ntfy topic.
  166. To send notifications to it, simply PUT or POST to the topic URL. Here's an example using <tt>curl</tt>:
  167. </p>
  168. <code>
  169. curl -d "Backup failed" <span id="detailTopicUrl">ntfy.sh/topic</span>
  170. </code>
  171. <p id="detailNotificationsDisallowed">
  172. If you'd like to receive desktop notifications when new messages arrive on this topic, you have
  173. <a href="#" onclick="return requestPermission()">grant the browser permission</a> to show notifications.
  174. Click the link to do so.
  175. </p>
  176. <p class="smallMarginBottom">
  177. <b>Recent notifications</b> (cached for {{.CacheDuration}}):
  178. </p>
  179. <p id="detailNoNotifications">
  180. <i>You haven't received any notifications for this topic yet.</i>
  181. </p>
  182. <div id="detailEventsList"></div>
  183. </div>
  184. </div>
  185. <div id="lightbox" class="lightbox"></div>
  186. <script src="static/js/emoji.js"></script>
  187. <script src="static/js/app.js"></script>
  188. </body>
  189. </html>