Zoho Creator API 集成基本授权 postUrl()

Zoho Creator API Integration Basic Authorization postUrl()

这是我的代码,我收到了 postural() 调用的内部错误。顺便说一下,还有一件事我想知道我们如何使用 verify_peer 到 0(零)来表示不使用 SSL 东西。我的代码有什么问题?

void SendSMS(SMS SMSObject)
{
 //CONFIGURATION
 URL = "https://example.com/send_ack.php";

 wbLogin = "wbLogin";
 wbPwd = "wbPwd";
 wbAccount = "wbAccount";
 label = "label";
 applicationName = "ADR SMS v1.0";

 //BASE64 ENCODING
 Base64Encoded = zoho.encryption.base64Encode("httpLogin:httpPwd");
 AuthorizationBasic = "Authorization: Basic " + Base64Encoded;

 //HEADER
 HeaderMap = Map();
 HeaderMap.put("content-type", "application/x-www-form-urlencoded");
 HeaderMap.put("Authorization", AuthorizationBasic);

 //REQUEST
 RequestMap = Map();
 RequestMap.put("compte", wbAccount);
 RequestMap.put("op", 1);
 RequestMap.put("type", 0);
 RequestMap.put("dt", zoho.currentdate.getDay());
 RequestMap.put("hr", zoho.currenttime.getHour());
 RequestMap.put("mn", zoho.currenttime.getMinutes());
 RequestMap.put("label", label);
 RequestMap.put("dest_num", "phone_number");     
 RequestMap.put("msg", "ZC Testing");
 RequestMap.put("ref", "ZC");

 //CALL POSTURL
 Result = postUrl(URL, RequestMap, HeaderMap, false);

     //DEBUG
 info Result;
}

为此目的使用 Zoho Creator API。