Closed taylorreece closed 1 year ago
Most connections contain all of their data in .fields. OAuth connections have additional data in .token. This allows you to create a connection with .token populated. For example,
.fields
.token
const sfConnection = createConnection( salesforceOAuth, {}, { instance_url: "https://example.my.salesforce.com", access_token: "abc-123", } );
Most connections contain all of their data in
.fields
. OAuth connections have additional data in.token
. This allows you to create a connection with.token
populated. For example,