solvable
The problem is that Twitter now (stupidly) requires OAuth even for public data. A relief is the local php script, which OAuths both receives data and accesses Ajax, and not directly to Ajaxing twitter.
I'm currently trying to pull custom timelines from twitter using the Reqwest JavaScript library. However, when I do this, the request is considered successful, but the data is not retrieved, and a GET error is displayed on the console. The im code is trying to look like this:
$.domReady(function () { $.ajax({ url: 'http://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=twitter', type: 'jsonp', success: function (response) { console.log(response); }, error: function (err) { console.log(err); } }); })
source share