Hi Guys, I’m trying to fetch user fullarchive feed , I’m using nodejs.
I was able to fetch query on the user but could not fetch specific user feed.
Anyone ?
I’m using tweets/search/fullarchive/dev.json
Thanks for reaching out here. Could you send over a code sample here? In the meantime be sure to check out our documentation on the subject.
1 Like
const params = {query: "user",fromDate:201808040000};
client.get('tweets/search/fullarchive/zTrackerDev.json', params, function(error, tweets, response) {
debugger;
if (!error) {
res.send(tweets);
} else
res.send(error);
});
Thanks for following up, we have two wrappers for search tweets that are search tweets ruby and search tweets python which might helpful for you here.
system
Closed
#5
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.