You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the webhook channel <code>{channel}</code>. You can POST to this URL to change the value, and subscribe to updates on <a href="http://tingbot.com">Tingbot</a> using the @webhook decorator.
</p>
<h3>Current value</h3>
<pre>{channel_value}</pre>
<h3>Example code</h3>
<pre>import tingbot
from tingbot import *
screen.fill(color='black')
screen.text('Waiting...')
@webhook('{channel}')
def on_webhook(data):
screen.fill(color='black')
screen.text(data, font_size=15, color='blue')
tingbot.run()
</pre>
<p>For more information, see the <a href="https://tingbot-python.readthedocs.io/en/latest/webhooks.html">webhooks section</a> of the Tingbot documentation</p>