我正在使用 SalesForce“Beatbox”库(http://code.google.com/p/salesforce-beatbox/source/browse/trunk/src/beatbox/_beatbox.py)
异常 1:当我只发送leadId 时,我收到异常“INVALID_CROSS_REFERENCE_KEY:需要有效的leadId”
这是说我没有使用有效的leadId,但我发誓这是一个有效的leadId,因为我事先进行了检索并从SalesForce自己那里获取了leadId!
例外 2:当我取消对 convertStatus 和 doNotCreateOpportunity 参数的注释时,我收到异常“soapenv:Client fault: Element {urn:partner.soap.sforce.com}doNotCreateOpportunity invalid at this location”
这说明我将参数传递给 SalesForce API 的方式有问题。不过对我来说它看起来是正确的。
关于如何解决这些问题的任何想法?
def convertLead(self, leadIds, convertedStatus, doNotCreateOpportunity=False):
return ConvertLeadRequest(self.__serverUrl, self.sessionId, leadIds, convertedStatus, doNotCreateOpportunity).post(self.__conn)
class ConvertLeadRequest(AuthenticatedRequest):
"""
Converts a Lead to an Account. See also:
http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_convertlead.htm
"""
def __init__(self, serverUrl, sessionId, leadIds, convertedStatus, doNotCreateOpportunity=False):
AuthenticatedRequest.__init__(self, serverUrl, sessionId, "convertLead")
self.__convertedStatus = convertedStatus
self.__leadIds = leadIds;
self.__doNotCreateOpportunity = doNotCreateOpportunity
def writeBody(self, s):
#s.writeStringElement(_partnerNs, "convertedStatus", self.__convertedStatus)
#s.writeStringElement(_partnerNs, "doNotCreateOpportunity", self.__doNotCreateOpportunity)
s.writeStringElement(_partnerNs, "leadId", self.__leadIds)
编辑:
现在,当我提出以下请求时:
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:p="urn:partner.soap.sforce.com" xmlns:m="http://soap.sforce.com/2006/04/metadata" xmlns:o="urn:sobject.partner.soap.sforce.com" xmlns:w="http://soap.sforce.com/2006/08/apex" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<s:Header>
<p:CallOptions>
<p:client>BeatBox/0.9</p:client>
</p:CallOptions>
<p:SessionHeader>
<p:sessionId>REDACTED</p:sessionId>
</p:SessionHeader>
</s:Header>
<s:Body>
<p:convertLead>
<p:convertedStatus>Cold Qualified</p:convertedStatus>
<p:doNotCreateOpportunity>False</p:doNotCreateOpportunity>
<p:leadId>00QC000000zAbLEMA0</p:leadId>
<p:overwriteLeadSource>False</p:overwriteLeadSource>
<p:sendNotificationEmail>False</p:sendNotificationEmail>
</p:convertLead>
</s:Body>
</s:Envelope>
我仍然收到异常“转换后的状态无效”
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Client</faultcode>
<faultstring>Element {urn:partner.soap.sforce.com}convertedStatus invalid at this location</faultstring>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>