The Application Programming Interface (API) for twitter.com
2
votes
1answer
77 views
Ruby Twitter Gem, rate limit exceeded
I am trying to use the ruby gem Twitter (https://github.com/sferik/twitter) to fetch the followers of a user from twitter api.
As per the documentation ...
0
votes
0answers
14 views
New Twitter API: using it for a custom twitter feed
humans.
I had a custom Twitter feed widget that was working fine until the API update. The code was like this:
<ul id="twitter_update_list"><li>Twitter feed loading</li></ul>
...
0
votes
0answers
10 views
PHP : change REST Search API v1 with Atom response to API v1.1
I was surprised when my program is not running. after browsing I found that REST API v.1 been destroyed. previously, i use the API v.1 with ATOM response.
Are there any friends here who can help me ...
3
votes
3answers
451 views
Using Twitter OAuth via API 1.1 without 3rd Party Library
I am facing trouble in using GET statuses/user_timeline with OAuth.
I am new to twitter & programming. Most of the help I see in the documentation are for POST.
Earlier I was using : ...
1
vote
1answer
119 views
Authenticate and request a user's timeline with Twitter API 1.1 oAuth
This morning I have received the dreaded 'The Twitter REST API v1 is no longer active. Please migrate to API v1.1.' error in a few of my web sites.
Previously I have been using javascript/json to ...
3
votes
4answers
265 views
The Twitter REST API v1 will soon stop functioning
I am having problems to collect a list of tweets with a specific hashtag, use this url:
https://search.twitter.com/search.atom?q=%23football
To put the url in the browser, I get the following ...
0
votes
1answer
14 views
Python twitter oAuth without module
How can I proceed to simply oAuth to twitter without any python module specific for twitter? I mean, I will need https module and so, but I don't want to use a twitter module. I wanna do it my way. ...
0
votes
0answers
27 views
Twitter API - Call 'Latest Tweet'
Up until today I was using the following code to display a client's 'Latest Tweet' on their website:
<?php
// Your twitter username.
$username = "CLIENTTWITTER";
// Prefix ...
0
votes
0answers
9 views
Twitter V1.1 Api > Callback call to function
In the V1 of the Twitter Api it was possible to do a callback to a custom javascript function after receiving the JSON-respons of Tweets.
Server side I'm making a function that returns a JSON of the ...
0
votes
1answer
89 views
my http://widgets.twimg.com/j/2/widget.js twitter widget stopped
i'm using this code since a while to embed any twitter account tweets in any website , also i use php to get the twitter account name from a mysql database
<script charset="utf-8" ...
0
votes
1answer
6 views
Do a rescue_from on Twitter::Error and still load view
I want to catch a Twitter::Error that happens in a view partial and still load the page. Put another way, I don't want a Twitter::Error to stop the page from loading. I just want that partial to not ...
3
votes
2answers
376 views
+50
How to get user image with Twitter API 1.1?
In API 1.0, we can use users/profile_image/:screen_name
For example : http://api.twitter.com/1/users/profile_image/EA_FIFA_FRANCE
But, it doesn't work anymore in API 1.1.
Do you have a solution, ...
0
votes
0answers
5 views
What's the easiest way to pull up a person's Twitter page as a popup?
When you're logged in at Twitter.com and click on a user's profile, a popup like this one shows up:
http://prntscr.com/19lgex
What's the easiest way to mimic this / pull this profile on a different ...
0
votes
0answers
23 views
Display Twitter feed v1.1 and Authenticating
I used to display a customized twitter feed on one of my clients sites using API v1. I got the JSON file using http://api.twitter.com/1/statuses/user_timeline/username.json and then parsed it. Now ...
0
votes
0answers
8 views
Does Twitter Steaming API support Application-only authentication?
In the past I have an app that "listen" to a list of Twitter feeds using the Basic authentication. Now I try to change it to use OAuth.
I follow this article and do the following request:
POST ...