林製造ajax
調用看起來像這樣:GET Twitter的/用戶/顯示/返回錯誤:400錯誤:404(AJAX)
$.ajax({
type:"GET",
dataType: "jsonp",
url:"https://api.twitter.com/1.1/users/show.json?user_id="+twitterId,
contentType:"application/json",
success:apiSuccessCallback,
error:apiFailCallback
});
和IM包括jsonp
作爲一種解決方法跨域的問題。不過,我收到以下錯誤:
Failed to load resource: the server responded with a status of 404 (Not Found)
和
Failed to load resource: the server responded with a status of 400 (Bad Request)
如果你想知道我的success
是一個簡單的警告聲明,我error
是一樣的。
任何人有任何建議嗎?
是你讓從'https'請求域? – 2013-04-26 01:05:33
我不是在https中,但我嘗試了https,並且得到了相同的錯誤 – 2013-04-26 01:10:18
是否調用了'apiFailCallback'? – 2013-04-26 01:16:40