ローカル環境のURLに php Web サービスを作成しました:
http://localhost:5454/kisan-06/index.php?option=com_api&format=raw&app=users&resource=login&key=dfd8a84f8cdce807ae1d30a838415ea37eaa075c
AndroidフォンギャップアプリでjQuery.ajaxを使用してこれを呼び出しています。
Ajax 呼び出しは次のとおりです。
$.ajax({
type: "POST",
url: "http://localhost:5454/kisan-06/index.php?option=com_api&format=raw&app=users&resource=login&key=dfd8a84f8cdce807ae1d30a838415ea37eaa075c",
data: "{ username: 'sai.kiks2@gmail.com', password: '123456'}",
contentType: "application/json; charset=utf-8",
cache : false,
dataType: "json",
success: function(data) {
alert("in success");
},
error: function(){
alert("There was an error loggin in");
}
});
エラーコールバック get が呼び出されるたびに、エラーを追跡できません。これで私を助けてください。