I have followed this tutorial,
However, i am not able to view the streamed data
looking at the below i should get a 200 Ok event but i do not.
From the same video, at t=384, it looks like i need to setup a parse-server in python. How can I do this.
I have followed this tutorial,
However, i am not able to view the streamed data
looking at the below i should get a 200 Ok event but i do not.
From the same video, at t=384, it looks like i need to setup a parse-server in python. How can I do this.
can you give more context? it looks like at that timestamp a video was about web3.py and in the other video about using ngrok
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()
what did you do from these steps?
Hi, I found my issue. i hadnβt set demo == False in my json.