我正在开发一个应用程序来管理移动应用程序中的cPanel帐户,但首先我将概念证明作为一个简单的Windows窗体应用程序。用户应该能够使用他们的用户名和密码进行身份验证。
但是,我尝试执行的操作并不重要,我总是得到以下响应:
<Root>
<cpanelresult>
<apiversion>2</apiversion>
<error>Execution of Email::addpop is not permitted inside of webmail (api2)</error>
<func>addpop</func>
<data>
<reason>Execution of Email::addpop is not permitted inside of webmail (api2)</reason>
<result>0</result>
</data>
<module>Email</module>
</cpanelresult>
</Root>
我尝试过的每个功能都会出现此错误。 cPanel帐户的功能列表中包含所有功能。
我使用以下代码来调用API:
表格
Communication com = new Communication();
string result = com.SendRequest("Email", "addpop",
"&domain ='apitest.DOMAIN.nl'&email='user'&password='12345luggage'"a='500'");
txtOutput.Text = result;
沟通课程
public string SendRequest(string module, string function, string extra = "")
{
try
{
var httpWebRequest =
(HttpWebRequest) WebRequest.Create(Settings.Default.Server +
string.Format(
"/json-api/cpanel?cpanel_jsonapi_apiversion=2&cpanel_jsonapi_module={0}&cpanel_jsonapi_func={1}{2}",
module, function, extra));
httpWebRequest.Accept = "*/*";
httpWebRequest.Method = "GET";
string credentials = (username + ":" + password).Base64Encode();
httpWebRequest.Headers.Add("Authorization: Basic " + credentials);
var httpResponse = (HttpWebResponse) httpWebRequest.GetResponse();
using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
{
string answer = streamReader.ReadToEnd();
XNode node = JsonConvert.DeserializeXNode(answer, "Root");
return node.ToString();
}
}
catch (WebException ex)
{
switch (ex.Status)
{
case WebExceptionStatus.ProtocolError:
return ((HttpWebResponse) ex.Response).StatusCode.ToString();
case WebExceptionStatus.NameResolutionFailure:
return "Could not find specified domain: " +
ex.Status.ToString();
}
}
return null;
}
非常感谢任何帮助。
答案 0 :(得分:0)
问题是由使用错误的端口引起的。即使我以为我多次检查了端口,我确实连接到了webmail端口(2087)而不是cPanel端口(2083)
只需修改连接到2083的端口即可解决问题。