1

ダイジェスト認証を使用してRestFul PHP Webサービスを呼び出す方法を知りたいですか?

基本的なリクエストを作成するとき、サーバーは認証を必要としますが、ユーザー名とパスワードを送信する方法がわかりません。phonegap アプリにはこれが必要です。

$.ajax({
    type: "GET",
    url: "http://webservice",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function (msg) {
        alert(msg);
    }

});

ありがとう、

4

1 に答える 1

0

data呼び出し時にパラメーターを使用する$.ajax

$.ajax({
    type: "GET",
    url: "http://webservice",
    data: {username:'Your Username', password:'Your Password'},
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function (msg) {
        alert(msg);
    }
});
于 2012-06-27T21:33:58.127 に答える