请考虑 Ben Nadel 帖子中的以下代码:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<Subscriber.AddAndResubscribe
xmlns="http://api.createsend.com/api/">
<ApiKey>#campaignMonitorKey#</ApiKey>
<ListID>#campaignMonitorList#</ListID>
<Email>kim@sweet-n-sassy.com</Email>
<Name></Name>
</Subscriber.AddAndResubscribe>
</soap:Body>
</soap:Envelope>
我知道 AddAndResubscribe 是操作名称, Subscriber.AddandResubscribe 是输入名称。我想知道campaignMonitorKey、campaignMonitorList、Email 标签中的值和一个空的Name 标签是什么意思?谁能解释一下?
WSDL 的来源:http ://api.createsend.com/api/api.asmx?WSDL
POST 的来源:http ://www.bennadel.com/blog/1809-Making-SOAP-Web-Service-Requests-With-ColdFusion-And-CFHTTP.htm
谢谢