Austin Turner

Results 101 comments of Austin Turner

I found that `res` did not have the data that the docs claimed and I think refreshToken will be missing from that (at least is was for me!). The refreshToken...

One alternative would be to use https://github.com/paustint/soql-parser-js to compose your queries.

SFDC adds it as a query parameter in the callback. Assuming you are using express your route is configured as `/callback` ```javascript oauthRoutes.get('/callback', async (req: Request, res: Response) => {...

@jaagaard01 - here is how I am doing it with https://getjetstream.app/ If you are getting uri mismatch, it is probably a mis-configuration with the connected app in Salesforce compared to...

Yes, upsert is supported with the bulk API. More information can be found in the JSForce api documentation: https://jsforce.github.io/jsforce/doc/Bulk.html#load

What you are showing is extremely useful, but it is not an upsert. An upsert is where you create or insert a record. What you are showing is how to...

Do you have the same results if you try `import * as jsforce from 'jsforce'`? I will try to play around with it to see if I can get it...

@novumcoder - In general, I would HIGHLY recommend avoiding using jsforce directly in your browser and instead manage it on the server (this is what I do for https://getjetstream.app/ )...

Make sure your password and security token are valid, as the error message is explicitly letting you know your credentials are not valid. If you did not use a security...

I am overriding the default `SelectColumn` with my own checkbox, but my implementation requires a unique id. It would be really convenient if I could get access to the output...