我正在開發一個Django 1.11應用程序,作爲Salesforce對象的UI,使用django-salesforce與Salesforce進行通信。 我必須讓用戶從與他們的聯繫人相關的Salesforce附件對象中下載文件。 # Django Attachment model on my_app/models.py
...
class Attachment(models.Model):
我正在使用Python/Beatbox訪問Salesforce案例。 service = beatbox.PythonClient() # instantiate the object
service.login(...) # login using your sf credentials
query_result = service.query("SELECT Id, AccountId,
我想知道是否有人知道如何使用beatbox或簡單的salesforce格式化IN查詢。例如: select id from lead where id in ('00Q3000000zLxkFEAS', '00Q3000000eODvUEAW')
在簡單的銷售人員,我有: sf.get_sfcontacts_all(param="where Id in ({0})".format())
我