A simple promise-based service component for working with Salesforce REST API directly from your component's JavaScript without you needing to write Apex or configure Named Credentials. Just install and use.
-
Deploy this project to your org (you only need what's in
force-app
folder). -
Explore the
LC_Demo
component in theforce-demo
folder on usage. -
Try out a demo
a. Assign yourself the LC Demo permission set.
b. Navigate to the LC Demo tab.
c. Play with the sample components to send different REST API requests.
d. Marvel that you didn't have to write any Apex code or configure a Named Credential :)
Add the <c:lc_api>
to your component and give it an aura:id
for reference.
<!-- YourComponent.cmp -->
<aura:component>
<c:lc_api aura:id="restClient"/>
...
</aura:component>
Find the <c:lc_api>
by its aura:id
then call the restRequest(..)
method passing in the url
, method
, body
, and any headers
.
// YourComponentController.js
({
createAccount: function( component, event, helper ) {
component.find( 'restClient' ).restRequest({
'url' : '/services/data/v44.0/sobjects/Account',
'method' : 'post',
'body' : JSON.stringify({
"Name" : "LC Demo Account"
})
}).then( $A.getCallback( function( response ) {
// handle response
// { id: "001f400000YEZB8AAP", success: true, errors: [] }
})).catch( $A.getCallback( function( err ) {
// handle error
}));
}
})
"Access Denied" or "No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://yourinstance.visualforce.com' is therefore not allowed access."
Your request was blocked due to Cross-Origin Resource Sharing (CORS) policy.
This can happen when trying to make a request to /services/apexrest/
endpoint.
For example, the Visualforce domain hosting LC_APIPage
is on https://yourinstance.visualforce.com
and is trying to make a web request to https://yourinstance.my.salesforce.com/services/apexrest/
.
Because the two domains do not match, then CORS policy prevents the request.
-
In Setup, navigate to Security | CORS.
-
Add the origin URL mentioned in your error message (e.g.
https://yourinstance.visualforce.com
) to the list of whitelisted domains.
Doug Ayers develops and maintains the project.
Postmate for a secure, promise-based library for communicating between windows and iframes.
jsforce for an elegant, promise-based library for working with Salesforce REST API.
You should check out sfdc-lax by Ruslan Kurchenko, a promise-based service component that makes calling Apex actions or using Lightning Data Service a breeze.
The source code is licensed under the BSD 3-Clause License