Hi cryptokid, the first video is what i want to do, use moralis streams. I have followed this successfully but I cannot view the streamed data, the video skims over ngrok. The second video I have found trying to diagnose why I cannot view the streamed data. The shows that I should get an 200 OK event (t=529). however I dont get this. It also talks about parse-server at t=384 which might be what i am missing. That said I am only looking to see the streamed data from the fist video.
The only additional thing i am doing I am using flask as shown below which I thought was required to view the streamed data locally.
from flask import Flask, request
app = Flask(name)
@app.route(β/webhookβ, methods=[βPOSTβ])
def webhook():
data = request.get_json()
print(data)
return βOKβ
if name == βmainβ:
app.run()