I am trying to use the Twitter api to listen for tweets from one user (1234)
twitterClient.stream('statuses/filter', { follow: 1234 }, (stream) => {
stream.on('data', tweet => {
console.log('tweet', tweet)
})
stream.on('error',…
I am using Twitter API by the package Twitter for Node.js.
Right now I succeed reading tweets using stream, but I failed to write tweets. I got 401 error which means Unauthorized according to Twitter Developer Documentation.
The code is here:
const…
I am trying to request my own timeline tweets organic_metrics by adding them on the tweet.fields. By doing so, I retrieve them as expected.
The problem is that if I add the expansions referenced_tweets.id,referenced_tweets.id.author_id to the query…
I'm trying to make a Twitter bot and using this article as my guide. I have:
Signed up for a Twitter Developer account and created an App
Changed the User authentication settings to the following:
First screen of user authentication…
When making a get request to twitter api, it returns all the tweets in the array tweets.statuses. We can find the total tweet counts using tweets.statuses.length. In one request it can only return a maximum of 100 tweets even if there are 1000s of…
How can I use node packages in claudiajs. I tried to use node-twitter-api and node-twitter in it but getting blank response.
promise will require or not i have no idea about it in lambda.
if any one has any examples or documents that may have…
I am observing the wrong output while hitting Twitter search api and i am using this npm module.
I am passing since, from, until parameters to the api, but i am not getting any tweet where as generating the cURL request from the Twitter's oauth…