I've registered my application at Twitter as depicted below
I'm trying to fetch a JSON
file of tweets with a specific hashtag like "#dog". However, I'm having authentication problems. I'm using Javascript.
/*
consumer_key=I_HAVE
&consumer_secret=I_HAVE
&user_token=I_HAVE-I_HAVE
&user_secret=I_HAVE
*/
$.getJSON("https://api.twitter.com/1.1/search/tweets.json?q=%23colombia&result_type=recent",
function (data) {
alert("IT WORKED!");
},function(data){
console.log("problem")
});