skip to Main Content

I’m setting up a server using firebase and want to load Tweets dynamically/live from Twitter by filtering them by hashtags.

Basically what I want to do is integrate a live feed of sorts from twitter to load tweets about Bitcoin and other Cryptocurrencies on my webpage. I’m using Vue CLI for the front end.

I’ve done extensive research on twitter, signed up for a developer account and had many go’s and tries, but without any luck. I am really stuck as there does not seem to be any way to fetch tweets and then display the, live on my front end.

Ì actually do not have any code to show, as I do not even understand how it would be possible.

I’ve set-up the backend successfully on firebase and do not have any issues with CRUD operations and Authentications etc. What I need is to dynamically load(live) tweets from twitter and then filter them using a hashtag.

I haven’t been successful at even understanding if this is possible, so I haven’t received any error messages. It seems to me that you can only let users sign in and then they can post tweets through an integrated API.

2

Answers


  1. You have to open a twitter stream in your backend and send the results to the frontend using sockets, if you want it to be updated in real time.

    You can check this out to get you started:

    Running a Node.JS background process for Twitter streaming API in Firebase

    Login or Signup to reply.
  2. Adding to what Haris has said, another alternative would be to use SSE (Server-Sent Events) since you are only concerned of unilateral communication rather than bilateral communication. A tutorial for this action, however, will depend on the backend framework you are using.

    Feel free to consult the following link that suites your framework on how to use SSEs:

    Server-Sent Events with Node

    Real-Time Web Apps with Server-Sent Events (Express JS)

    Server-Sent Events with Fastify (fastify-sse)

    Server-Sent Events with Hapi (SuSiE)

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search