Questions tagged [twitter-feed]

The Twitter feed is basically a list of certain Twitter posts (or so called tweets) that match certain conditions.

The Twitter feed is basically a list of certain Twitter posts (or so called tweets) that match certain conditions. Examples for such twitter feeds are:

  • User feed - a list of tweets of a particular user.
  • Hashtag feed - a list of tweets that contain a certain hashtag.
  • Search feed - a list of tweets that match a certain search query in Twitter.
  • List feed - a list of tweets from a specific list of users.
  • Collection feed - a list of tweets from a collection - collections are timelines which are curated by Twitter users.

A twitter feed might also consist of a mix of the above examples, or any other custom conditions.

Generally, Twitter Feeds can be created by:

73 questions
2
votes
2 answers

Display Twitter Feed of user

I wanted to display twitter feed like in image Is it necessary to do "OAuth" for this?? I am trying to do "OAuth" in using this url. It is giving: Access denied Sorry, you're not allowed to access that page. Twitter feed should be of user which i…
Nisha
  • 354
  • 2
  • 19
2
votes
2 answers

Twitter - Streaming API for worldwide tweet monitoring?

I'm looking to create a Twitter map visualization much like these: http://twittermap.tv/ http://beta.twittervision.com/ However, according to the Streaming API docs: https://twitterapi.pbworks.com/Streaming-API-Documentation#locations Twitter only…
ground5hark
  • 4,464
  • 8
  • 30
  • 35
2
votes
1 answer

Twitter Feed issues with Ember Views

Basically on the home page I have the code snippet generated by Twitter Widget, when I load the page for the first time via url, the feed gets displayed, now I go to other page & come back to home page again, the twitter feed doesnt seem to be…
Mudassir Ali
  • 7,913
  • 4
  • 32
  • 60
1
vote
1 answer

get timeline of 2 (or more) users from Twitter

I am trying to get the timeline of 2 or more users in a list, and then order by the date and display in a listview at the moment I have the following :- Contacts searchTerm1 = cmbContact.SelectedItem as Contacts; if (searchTerm1 !=…
JMon
  • 3,387
  • 16
  • 63
  • 102
1
vote
1 answer

Twitter: Rate limit exceeded, do tweet buttons count as a request?

I've got a twitter feed that caches a request from twitter. At most it gets the feed every 10 minutes (so that's 6 times an hour out of the max limit of 150). I regularly get issues when the rate limit is exceed. The only reason I can think of that…
Eruant
  • 1,816
  • 2
  • 14
  • 22
1
vote
1 answer

How Twitter API method HOME Time Line works?

I try to get tweets from user's home using home method. http://api.twitter.com/version/statuses/home_timeline.format If I use paging and set as the following.. Example. paging.setSinceId(000009L); What would be the expected result returned from API…
kitokid
  • 3,009
  • 17
  • 65
  • 101
1
vote
0 answers

How to switch twitter-feed data-theme to dark/light mode using jquery?

I want to switch the twitter feed to dark/light mode when clicking on the buttons. It tried to add using jquery but it is not working for me. function lighttheme() { $('#twitterfeeds').attr('data-theme', 'light'); …
ALI KHAN
  • 39
  • 5
1
vote
4 answers

How do i get twitter-feed of particular URL in my application?

I am developing an Android application. In this application I want the RSS feed of a particular Twitter page. But when I open that URL I didn't find rss icon, so I am not able to get RSS feed. Can you give me any suggestion how to find RSS feed for…
Amandeep singh
  • 1,865
  • 7
  • 21
  • 41
1
vote
1 answer

Equivalent of jQuery's contents().find() chained methods in pure JS

So I've been trying to do the following bit of code without jQuery: $(".parent-class").contents().find(".child-class").css("color", "red"); I'm trying to edit the styles of an embedded Twitter feed and I could only do that by getting the module's…
Nikitas IO
  • 696
  • 5
  • 20
1
vote
1 answer

Twitter Search Trouble

Hi guys I'm trying to use http://search.twitter.com/search.json to pull feeds of certain users. It seems to work with most but I can't seem to pull justinbieber's twitter feed I keep getting empty results I can pull wilw no…
lemon
  • 9,155
  • 7
  • 39
  • 47
1
vote
1 answer

How to add a dynamic variable into a jQuery function

I'm trying to modify a twitter widget where based on the dropdown, users can switch between the different search terms. Instead of the present code where I have to define a keyword, I want to create a dropdown list of keywords so my users can select…
Sledge81
  • 23
  • 3
1
vote
1 answer

Is it possible to see what twitter user clicked a link?

What if it it was a URL shortener that can track destination site profile? Can this be done without authentication?
jprim
  • 1,293
  • 2
  • 16
  • 21
1
vote
2 answers

displaying live feeds : dailybooth live feed, twitter search result stream

What is the web technology behind displaying live feeds like twitter search results and dailybooth live feed? Can I get similar results from any RSS with some coding?
user460064
  • 89
  • 1
  • 2
1
vote
0 answers

Retweet using STTwitter API

I have tried to add the retweet concept in my application using STTwitter API with following method after user authentication: [twitter postStatusRetweetWithID:[NSString stringWithFormat:@"691544087921606656"] successBlock:^(NSDictionary *status) { …
Vishal
  • 8,246
  • 6
  • 37
  • 52
1
vote
1 answer

xslt unescape twice (e.g. & to become &)

I am trying to transform some xml, which was returned by the Twitter Search api. It looks like the content element contains text that is escaped twice, Inception style. When I use the following in my XSL stylesheet it only unescapes it…
Jaap
  • 298
  • 2
  • 14