特定のリモート Web サービスへのアクセスを必要とするモバイル アプリケーションを開発しています。私は jQuery.ajax() を使用していますが、オリジン ポリシーが同じであるため、JSONP を使用してリクエストを行う必要があります。私のクライアントの要求はそうです:
$.ajax({
type: "GET",
url: "http://www.foo.jws/bar",
contentType: "application/json; charset=utf-8",
data: {},
dataType: 'jsonp',
success: function(msg) {
console.log(msg);
},
error: function() {
console.log('error');
}
});
受信し続けるエラーは「Uncaught SyntaxError: Unexpected identifier」です
私は何を間違っていますか?
編集: WS のデータは XML です