Hello,
I don’t know if this is out of the scope of wave but is it possible to send requests from an external service to a wave app and have the wave app handling it correctly? For example, consider the following snippet:
from h2o_wave import site, ui, Q, main, app, on, handle_on
@app('/demo', mode='broadcast')
async def serve(q: Q):
q.page['main'] = ui.markdown_card(
box='1 1 -1 -1', title='Demo', content=f'Main page: [Make a request](#request)')
if q.args['#'] == 'request':
q.page['main'].content = 'Got request'
await q.page.save()
Would it be possible from cURL for example to send a POST request to https://.../demo#request
?
Gianluca