It seems as though there is an issue with Twitter’s API recently? A lot of the themes on Themeforest that incorporate it, and some of the sites I incorporate it with, aren’t currently working because of the ‘upgrade’ to Twitter API 1 .1.
Does anyone have any knowledge of this?
https://dev.twitter.com/discussions/10803Any discussion as to what the old themes and their developers should do?
Down on my themes as well.
I had the same problem, but solution is quite simple. You just need to change link to user_timeline.json
Good: https://api.twitter.com/1/statuses/user_timeline.json?screen_name=episod
Bad: https://twitter.com/statuses/user_timeline/episod.json
Bad: https://api.twitter.com/statuses/user_timeline/episod.json
Bad: https://twitter.com/1/statuses/user_timeline/episod.json
If you want to know more about this problem you should visit this discussion https://dev.twitter.com/discussions/10803
Yeah… I had to do the same as dan_disher said. Stopped working yesterday.
- United States
- Sold between 250 000 and 1 000 000 dollars
- Has been a member for 5-6 years
- Referred between 100 and 199 users
- Bought between 100 and 499 items
- Author was Featured
- Microlancer Beta Tester
- Exclusive Author
Authors need to update their themes / templates is the answer.
We just had one go through the queue already – few more to go that use that code. But more recent ones didn’t so all should be good. It takes about 30 seconds to fix – longer to reupload everything tbh 
Jonathan
or for the rss feed
http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=cfcmsawesome. thanks for the responses guys.
Hm, so maybe there is more to my solution? I’m trying to go through all of the old themes I purchased through Themeforest and fix them, so
$.getJSON('http://twitter.com/status/user_timeline/' + o.username + '.json?count=' + o.count + '&callback=?', function(data){
became
$.getJSON('https://api.twitter.com/1/statuses/user_timeline.json?screen_name=' + o.username + '?count=' + o.count + '&callback=?', function(data){
and I’m being met with a [{"message":"Sorry, that page does not exist","code":34}]
I’m thinking I need to do more to ensure this is working correct. The current theme is Adora.
The ampersand.
$.getJSON('https://api.twitter.com/1/statuses/user_timeline.json?screen_name=' + o.username + '&count=' + o.count + '&callback=?', function(data){
I was using ”?count” like before. Hope this helps someone.
https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline- Sold between 250 000 and 1 000 000 dollars
- Item was Featured
- Author had a Free File of the Month
- Author was Featured
- Exclusive Author
- Interviewed on the Envato Notes blog
- United States
- Microlancer Beta Tester
RCNeil said
Hm, so maybe there is more to my solution? I’m trying to go through all of the old themes I purchased through Themeforest and fix them, so$.getJSON('http://twitter.com/status/user_timeline/' + o.username + '.json?count=' + o.count + '&callback=?', function(data){became
$.getJSON('https://api.twitter.com/1/statuses/user_timeline.json?screen_name=' + o.username + '?count=' + o.count + '&callback=?', function(data){and I’m being met with a
I’m thinking I need to do more to ensure this is working correct. The current theme is Adora.[{"message":"Sorry, that page does not exist","code":34}]
That author already has a patch in his support forums 
