我想将 Limesurvey API 与 jquery 一起使用。当我尝试使用以下代码获取会话密钥时,我收到错误消息 631: failed to parse request, when I enable the xml rpc. 启用 json-rpc 时没有响应。
$.post("url_to_survey/index.php/admin/remotecontrol",{
username : "foo", password : "bar"
},
function(data) {
alert('sessionKey: ' + data);
}
);
有人可以发布示例查询吗?