Austin Turner
Austin Turner
Are you appending the API token to your password? If the AWS ip is not whitelisted, then bother the password and API token must be provided. On Fri, Apr 19,...
AFAIK the only way to know if a connection is valid or not is to try out an API call, at which time the token might be refreshed automatically, if...
@johnoliv - Are you 100% sure you are using the same instance of your connection? Put a break point and inspect or log out something like `console.log('Connection Token: ' +...
@johnoliv - that is surprising, but makes sense. even without the issue you are having, logging in with username and password should be avoided if possible. But if that is...
Per the Bulk API Developer's Guide: "Empty field values are ignored when you update records. To set a field value to null, use a field value of #N/A."
As mentioned [in the docs](https://jsforce.github.io/document/#operation-for-multiple-records), as long as you are using JSForce 1.9+ and Salesforce API 41.0+ it will call the Collections API if you pass in more than one...
@dufoli - You may not want to spend time on a PR because it probably will never be merged and would be a waste of your time.
You can also use the generic request api to handle this use-case: [#934 (comment)](https://github.com/jsforce/jsforce/issues/934#issuecomment-546714813)
I don't know exactly how it is supposed to work based on the incorrect docs, but here is how I have used it. My use-case is that I need to...
@ChandanShankar - Yes, any arbitrary api is supported if you use `conn.request` - I have reviewed the code, tried out various scenarios and documented my findings on this comment. Tried...