python-salesforce-api
python-salesforce-api copied to clipboard
Python Salesforce API wrapper made easy
The field name argument name was incorrect in the example. Fixed it with the correct one.
I am currently evaluating the module in a monitoring project. It seems that in login.py a debug print statement was forgotten in the code, so every time a SOAP authentication...
The explicitly set server/instance URL was being overriden by what the server returned. There are however probably good reasons for the original URL to be set by the developer. Ignoring...
https://github.com/felixlindstrom/python-salesforce-api/blob/37ed67bc46648a102c74f5d6fec0f45a9db79601/salesforce_api/login.py#L101 This creates a bug with reverse proxies or firewalled environments that specifically whitelist certain URLs. Using the existing `instance_url` to make the call to `plain_access_token(instance_url=instance_url,...)` would fix it.
Salesforce requires the uploaded data to be encoded as (or at least compatible with) UTF-8. ([https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_prepare_csv.htm](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_prepare_csv.htm), fourth bullet point from the top). Though, in practice, upload jobs with higher-code-point characters...
Destination URL not reset. The URL returned from login must be set Might related to https://developer.salesforce.com/forums/?id=906F00000008rtEIAQ I am using auth_token as the way to auth query: client.sobjects.query("SELECT Id, FirstName, LastName...
Hi @felixlindstrom First thank you for sharing this, saved me a lot of time ! It seems there is an issue in https://github.com/felixlindstrom/python-salesforce-api#bulk-update documentation since the `update key` is not...
I need to switch a user account for an account record, but most login methods require a combination of username and a password, and I don't have any of those,...
Do we have bulk Query for querying sf using salesforce-api