以前にJQueryを使用してtwitter JSONを使用しました。しかし、今はうまくいかないようです。Twitterサーバーがダウンしているか、何か間違っていますか?
これは私のコードです:
//Twitter
$(function() {
var twitterBaseURL = 'http://twitter.com/status/user_timeline/archies4000.json?count=1&callback=?';
var html = '';
var num_of_tweets=0;
$.getJSON(twitterBaseURL, function(json) {
$.each(json, function(i, item) {
num_of_tweets=i+1;
var text = $.toLink(item.text);
var profileImageURL = item.user.profile_image_url;
var time_arr= item.created_at.split(" ");
var time=time_arr[1]+" "+time_arr[2];
html += '<p>' + text + ' on '+ time + '</p>';
});
$('#twt-desc').html(html);
$('#twt-pic').append('<img src="'+profileImageURL+'" alt="VPULTS" />');
});
});
ブラウザに URL (http://twitter.com/status/user_timeline/archies4000.json?count=1&callback=?) を直接入力して、ブラウザ自体で JSON を取得しようとさえしました。それは示しています:
({"errors":[{"message":"Sorry, that page does not exist","code":34}]});
ありがとうございました。