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
});
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)
興味があれば、 mysuccess
は単純なアラート ステートメントであり、 myerror
も同じです。
誰にも提案はありますか?