Data Connector
Last updated
Last updated
The is a data service that allows object data and meta data in Salesforce to be securely accessed by custom applications.
The WireBootstrap for Salesforce Data Connector is a that can talk to Salesforce using the Salesforce REST API.
Using the data connector, Salesforce objects can be queried from WireBootstrap applications. The data connector also provides access to Salesforce meta data such as lists of objects and their fields using features.
To use the data connector, create a using the connector's service provider key in the initialization. The service provider key for the WireBootstrap for Salesforce Data Connector is sf
.
For security, the Salesforce REST API requires an access token. For details on creating a Salesforce access token, visit .
Below is a sample access token object returned from a call to Salesforce for a token.
To set up the security for data source calls, use the Headers
property during the data source initialization. Set Authorization
property using the token response object returned from Salesforce.
Use the ServiceRoot
configuration property on the data source to specify the end point for the Salesforce REST API. This will be in the instance_url
property on the token response object.
CORS must be configured in Salesforce to allow the WireBootstrap for Salesforce Data Connector to access data returned from calls to Salesforce from a web browser.
For details visit, .