次の WCF REST サービスを呼び出す正しい関数は何ですか?
http://xx.x.x.xxx/GAdmin/WGService/Service1.svc/RetrieveData?term=apple
以下のパラメータを追加して
term=apple
username:joe password:pote
jsonであるため、jsonpのコールバック関数が必要です
$.getJSON('http://xx.x.x.xxx/GAdmin/WGService/Service1.svc/RetrieveData?term=apple
callback=?'{
content: { username: "joe", password: "pote" },
function (data)
{
alert('Received ' + data + ' results');
};