1

ログインが必要なサービスである webtrends から json データを取得する ajax リクエストを作成しています。ユーザー名とパスワードを ajax リクエストで渡していますが、それでも 401 無許可エラーが発生します。私は3つの異なる方法を試しましたが、うまくいきません。誰かが解決策を見つけるのを手伝ってくれますか?

1.   $.getJSON('https://ws.webtrends.com/..?jsoncallback=?', { format: 'jsonp', suppress_error_codes: 'true', username: 'xxx', password: 'xxx', cache: 'false' }, function(json) {
         console.log(json);        
       alert(json);
  });


2.  $.ajax({
    url: "https://ws.webtrends.com/../?callback=?",
    type: 'GET',
    cache: false,
    dataType: 'jsonp',
    processData: false,
    data: 'get=login',
            username: "xxx",
            password: "xxx",
    beforeSend: function (req) {
        req.setRequestHeader('Authorization', "xxx:xxx");
    },
    success: function (response) {
        alert("success");
    },
    error: function(error) {
      alert("error");
    }
});

3. window.onload=function() {
var url = "https://ws.webtrends.com/...?username=xxx&password=xxx&callback=?";
var script = document.createElement('script');
script.setAttribute('src', url);
document.getElementsByTagName('head')[0].appendChild(script);
}

function parseRequest(response) {
                try  {
alert(response);
}
catch(an_exception)  {
                    alert('error');
                }
}
4

1 に答える 1

0

方法 3は、名前付きコールバック関数を使用し、URL で基本認証を使用する場合に機能する可能性があります。ただし、多くのブラウザーは url 認証 (または名前が何であれ) を受け入れないことに注意してください。試してみたい場合は、次のように書き換えることができます。

window.onload = function() {
 var url = "https://xxx:xxx@ws.webtrends.com/...?callback=parseRequest";
 var script = document.createElement('script');
 script.setAttribute('src', url);
 document.getElementsByTagName('head')[0].appendChild(script);
}

function parseRequest(response) {
  try  {
     alert(response);
  }
  catch(an_exception)  {
     alert('error');
  }
}
于 2013-02-09T14:17:53.067 に答える