我嘗試了facebook的新圖形api。我試圖使用jQuery ajax獲取一些數據。 這是我的javascript代碼,非常基本的樣本...使用新的facebook圖形api,ajax調用返回null(空)
var mUrl = 'https://graph.facebook.com/19292868552';
$.ajax({
url: mUrl,
dataType: 'json',
success: function(data, status) {
$('#test').html(data);
alert(data);
},
error: function(data, e1, e2) {
$('#hello').html(e1);
}
});
的網址是不需要的訪問令牌(嘗試使用瀏覽器)的網頁,但成功函數返回一個空對象或null。
我在做什麼錯?感謝所有幫助!
正是我的問題! – digiguru 2010-10-27 19:10:20