因此,在工作项目中尝试使用 Plesk 的 REST API(从 17.8 版开始可用),我开始对它有所了解。我一直在尝试添加域,但是当我必须指定托管类型时它一直给我错误。
请求体本身如下:
{
"name":"example.com",
"hosting_type":"virtual",
"description":"Description goes here"
}
这会得到以下神秘的响应:
{
"code": 1014,
"message": "htype\/vrt_hst is specified but there is no hosting\/vrt_hst"
}
根据 提供的文档/api/v2/swagger.yml
,应允许以下任何值:virtual
, standard_forwarding
, frame_forwarding
,none
然而,无论我输入什么,我都会得到上述响应的变体 ( htype\/{type} is specified but there is no hosting\/{type}
)。
在这一点上,我有点卡住了;我不确定要检查什么,当我尝试查找错误代码时,任何参考都转到 Plesk 的 XML API 上的参考。使请求生效所需的缺失链接是什么?