I'm relatively new to JavaScript and decided to try and access Twitter through the API to get my 5 latest tweets however I'm running into difficulty and I would be grateful for some help.
This is the tweets.js
code. I've looked carefully at the API to form this but not sure if it is right.
tweets = {
loaddata: function() {
$.ajax({
url: 'https://api.twitter.com/1.1/statuses/user_timeline.json',
type: 'GET',
dataType: 'json',
data: {
screen_name: 'techybox',
include_rts: false,
count: 5,
include_entities: true
},
success: function(data, text) {
var html = '<li class="tweet">TWEET</li>';
$('#timeline').append(html.replace('TWEET', tweets(data.text)));
}
});
};
}
$(document).ready(function() {
tweets.loaddata();
});
In theory that should load the 5 latest tweets and append them to the UL with the id timeline. I've seen that you may need OAuth to do this but I was unsure how i would implement this? Am I correct? Twitter's old API seemed to work without this but 1.1. may have changed with this?
Finally here is my html page that just contains the UL:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tweets</title>
</head>
<body>
<h1>Tweets</h1>
<ul id='timeline'></ul>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="tweets.js"></script>
</body>
</html>