我只想通过REST API通过浏览器(IE11,Firefox)中的本地编写的javascript js访问ALM,但无法登录。这是我通过jquery请求LWSSO cookie的代码:

var auth = btoa(USER+":"+PASSWORD);

$.ajax({
    type: "POST",
    url: https://alm.xxx.net/qcbin/authentication-point/j_spring_security_check,
    headers: {
        "Authorization": "Basic " + auth
    },
    success : function(data) { },
});


响应头包含:


  https://alm.xxx.net/qcbin/authentication-point/login.jsp;jsessionid=1gfsdk4pn525f1ur55e2x2zzte?login_error


OTA/directX对象一切正常,但我想通过javascript使用REST API。谁能帮我?

最佳答案

首先;您正在使用哪个版本的ALM?其次,我认为您为认证点使用了错误的URL。根据文档(对于ALM 12.01),它应该为https://alm.xxx.net/qcbin/authentication-point/authenticate

另外,您使用的HTTP方法应该是GET,而不是POST。

我注意到您在URL中使用https,所以我假设您的ALM实例已经设置好了吗?

关于javascript - 如何使用REST和本地javascript访问HP ALM?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31670129/

10-12 00:24