eu tenha essa url eu consigo pegar pegar o fluxo dela.
Hi @michelfelipe37 ,
This workflow appears to be returning JSON, so opening it with your browser or with a script/program will show it’s results.
Can you tell us a little more about what you’re trying to achieve and we can give some guidance?
eu tenho um bot do telegram que faz a integração do site de compra do curso para a plataforma onde esta alocado o curso
Correct me if I’m wrong, but it sounds like you’re trying to access the Telegram data in a Python program.
Instead of writing a Python app locally, instead you can use a Python Code Step within your Pipedream workflow:
But if you’re still just trying to use this data on a program that’s running on your computer, you can do a few things:
- Use a service like ngrok to expose your web application, so you can use the Pipedream HTTP actions to POST that data to your service
- Use a pre-built MySQL, Postgres, MongoDb, Firebase or AirTable actions to store your Telegram data where you local application can also connect to it
- Store Telegram data in a Data Store, then on another workflow your local program can poll it for data
Lots of options to pick from!
I don’t know if you’re intending to build a web app or not, but I would pick #2 if you don’t need to react in real time to these Telegram messages.
But if you do need to react in real time, then using webhooks with option #1 is the way to go.