我希望有人可以帮助我。
我有这个功能可以将一些登录数据发布到外部系统。
$( document ).ready(function() {
$.ajax({
url:"https://www.europace2.de/partnermanagement/login.do",
type:"POST",
contentType:"application/x-www-form-urlencoded; charset=utf-8",
data:{ username: "username", password: "password" },
dataType: 'html',
success: function (data) {
$(".test").html(data);
},
error:function(){
alert("something went wrong");
}
})
});
状态是200 OK,但我没有得到任何答案,成功也失败了。
这里我有一部分来自外部系统的文档。
请求
POST
https://www.europace2.de/partnermanagement/login.do?
redirectTo=%2FvorgangsManagementFrontend
Header:
Content‐type:application/x-www-form-urlencoded;charset=UTF-‐8
Body (Form Data URLencoded):
username=Mustermann@beispiel.de&password=4711
The parameter redirectTo is optional...anyway with that it works not at all.
效应初探
HTTP/1.1 200 OK
Content-‐Type:text/plain
Set-‐Cookie:sessionId=3
f8a86fa02128b5265de9f1ec4b3c4be; Path=/
在dataType上,我试过xml,json,script,text,html,只是没有dataType。
所以......任何人都知道我做错了什么?
编辑:我不知道是否允许。如果有人想亲眼看看,我可以通过私信发送用户名和密码。