Skip to content

Instantly share code, notes, and snippets.

@adamloving
Created May 15, 2011 21:37
Show Gist options
  • Save adamloving/973565 to your computer and use it in GitHub Desktop.
Save adamloving/973565 to your computer and use it in GitHub Desktop.
The simplest way to get a user's Twitter timeline using Javascript and jQuery
var url = "http://twitter.com/status/user_timeline/adamloving.json?count=10&callback=?";
$.getJSON( url, function( data ){ console.log(data) });
@iwannabebot
Copy link

iwannabebot commented Oct 24, 2018

{
  "errors": [
    {
      "message": "Sorry, that page does not exist",
      "code": 34
    }
  ]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment