我在工作灯适配器中遇到问题,在以下 http 适配器方法中,它显示The mandatory parameter 'action' is missing
,返回 statusCode
500
和 statusReason 作为“ Internal Server Error
”。我已在适配器 xml 文件中正确提供了所有用户凭据,但我不知道为什么会出现此错误。
代码:
function actionOnProcessInstance()
{
var param = "/rest/bpm/bfm/v1/process/_PI:9003013d.4387342e.1efe573f.7c20307?action=resume";
var input =
{
method : 'put',
returnedContentType : 'json',
path : param,
};
var response = WL.Server.invokeHttp(input);
return response;
}