1
我得到的錯誤,但空的狀態文本,這裏是我的代碼謝謝連接錯誤
var ajaxUrl = 'https://graph.facebook.com/me?access_token=' + accessToken
$.ajax({
url: ajaxUrl,
dataType: 'json',
success: function(user){
alert('h');
},
error: function(xhr, ajaxOptions, thrownError){
alert(xhr.statusText);
}
});
你有[跨域的一個域名做一個AJAX調用的JSON ](http://en.wikipedia.org/wiki/Same_origin_policy)問題... – Reigel 2011-01-13 09:25:07