Salesforce API Integration Security
31:35
Salesforce to Salesforce Integration
40:23
Salesforce Backup and Restore
30:57
3 жыл бұрын
Salesforce Open CTI Integration
46:33
Demystify Salesforce Bulk API
54:15
3 жыл бұрын
Salesforce Developer Limit
50:21
3 жыл бұрын
Canvas Integration Basics
41:54
3 жыл бұрын
Change Data Capture
1:13:54
3 жыл бұрын
Пікірлер
@SomnathSharma-e7c
@SomnathSharma-e7c Ай бұрын
Sir please help me understand-I have defined a ConnectedApp in one org (org 1) with API access enabled, and it seems that I can use the client_id and client_secret of that connected app to obtain an access token to a different organization (org 2) using an user account defined in Org 2. Org 1 and Org 2 does not share the connected app in anyway? Is this behavior correct? I was under the impression that ConnectedApp should only enable access to orgs in which the connected app is installed in. Is that understanding wrong? @salesforceCodex
@AbhishekPatinge
@AbhishekPatinge Ай бұрын
src refspec master does not match any , its showing like this while pushing the vs code in heroku
@pradeepkumar-bo6qd
@pradeepkumar-bo6qd Ай бұрын
where we can see push topics under vscode for deploymnet
@KeerthanaU-e5p
@KeerthanaU-e5p Ай бұрын
Hi How to achieve phone to case? Like when call isnt connected to agent then case has to be created.
@KeerthanaU-e5p
@KeerthanaU-e5p Ай бұрын
How to create phone to case? Should we do any automation or is it part of the setting?
@karunakarburugu9473
@karunakarburugu9473 2 ай бұрын
It’s very confusing
@DikshaD-g7y
@DikshaD-g7y 2 ай бұрын
an we call a 3rd party API from SF if this API is hosted on internet using self-signed certificate or it has to be CA signed
@asiergonzalez4777
@asiergonzalez4777 4 ай бұрын
Sorry for the unexpected appearance, I saw your profile on the forum dealing with the error: System.CalloutException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target I've been trying to deal with this error for several weeks. I'm going to tell you about my situation in case something occurs to you and I will be eternally grateful :) I have an Apex class that wants to make an http POST request: public String ALF_getTicket() { HttpRequest req = new HttpRequest(); req.setClientCertificateName('prealhacenaicex'); String BaseURLAuth = //custom setting req.setEndpoint(BaseURLAuth); req.setMethod('POST'); req.setHeader('Content-Type', 'application/json'); String userId = //custom setting String password = //custom setting Map<String, String> body = new Map<String, String>(); body.put('userId', userId); body.put('password', password); String jsonString = JSON.serialize(body); req.setBody(jsonString); req.setTimeout(120000); // milisegundos Http http = new Http(); HTTPResponse res = http.send(req); // Almacena el ID del ticket en una variable String ALF_ticket; if (res.getStatusCode() == 201) { // Parsea el JSON de la respuesta Map<String, Object> jsonResponse = (Map<String, Object>) JSON.deserializeUntyped(res.getBody()); Map<String, Object> entry = (Map<String, Object>) jsonResponse.get('entry'); ALF_ticket = (String) entry.get('id'); } else { throw new UCMException('Error excepcion:' + req); } // Devuelve el ID del ticket almacenado return ALF_ticket; } When running it from anonymous I get the System.CalloutException error. To deal with it, I obtained the SSL Certificate from the endpoint server which is a CA certificate, signed by GoDaddy, as it did not work I still followed this guide: santiagoibarra.medium.com/install-a-ca-certificate-used-by-your-domain-in-salesforce-69c7e00a4247 Therefore, request the intermediate certificate and the root. Once you have all three, generate a new file called ChainCertificate.cer with this order: 1.SSL 2. Intermediate 3. Root I saved it and updated the CA certificate. It still doesn't work and I can't think of anything anymore. Any advice you can give me is sure to be of great help. All the best.
@smritisharan-sfdcamplified
@smritisharan-sfdcamplified 4 ай бұрын
amazing video -very clarity
@MyNeonWorld
@MyNeonWorld 5 ай бұрын
kuchh bhi..LOL
@telangitejasvini
@telangitejasvini 6 ай бұрын
Part 2 of API Integration using Rest API is missing. Can you please upload same?
@ektagupta493
@ektagupta493 7 ай бұрын
really good session
@SalesforceCodex
@SalesforceCodex 7 ай бұрын
Thank You
@ehijane02
@ehijane02 7 ай бұрын
God bless you for this training.so handy following the series
@SalesforceCodex
@SalesforceCodex 7 ай бұрын
Thank You
@prashantmithari6161
@prashantmithari6161 7 ай бұрын
Please upload for Five9 CTI integration with salesforce.
@taiyabalisaiyad2295
@taiyabalisaiyad2295 8 ай бұрын
Your contact number
@taiyabalisaiyad2295
@taiyabalisaiyad2295 8 ай бұрын
Join me
@ugenkumari3463
@ugenkumari3463 8 ай бұрын
Helpful video but audio can be improved.
@telangitejasvini
@telangitejasvini 8 ай бұрын
Great content !!
@SalesforceCodex
@SalesforceCodex 8 ай бұрын
Thank You, Tejasvini
@SharmaJiSFDCBlogs
@SharmaJiSFDCBlogs 8 ай бұрын
Very Detailed Explanation .Can we edit external objects within Salesforce @SalesforceCodex
@rahulkulkarni6645
@rahulkulkarni6645 8 ай бұрын
please share code
@SalesforceCodex
@SalesforceCodex 8 ай бұрын
Hello Rahul, You can refer code at salesforcecodex.com/salesforce/capture-image-using-webcam-in-lightning-component/
@Shri0900
@Shri0900 Жыл бұрын
is heroku isnt no longer free for practice what are the other alternatives?
@umangberi3287
@umangberi3287 4 ай бұрын
correct, no longer free
@pramodalhat885
@pramodalhat885 Жыл бұрын
what is dom in simple word?
@gabethebabe3840
@gabethebabe3840 Жыл бұрын
I have a use case where I have a custom javascript lightning component that needs to make a fetch api request to an apex rest endpoint in the same org. I get an authorization error. I cannot use lwc decorators like wire. it has to be a fetch. How can I authenticate securely without exposing any tokens? :/ please help
@nitinsen2939
@nitinsen2939 Жыл бұрын
i have marked 'NotifyForOperationCreate=true' but its not working for insert please let me know is there any configuration which i need to do
@einstu
@einstu Жыл бұрын
You don't really explain anything. You just walk around the application in a very tedious way. The SAML explanation was very confusing.
@mmr7463
@mmr7463 Жыл бұрын
If i open this comp code to test in mobile..its opening front cam only but how do we do it for back camera also....
@balkrishnayadav7564
@balkrishnayadav7564 Жыл бұрын
Hii, I am getting some problem with the installation of OpenCTI Lightning Demo Adapter
@pruthvikhartmol3505
@pruthvikhartmol3505 Жыл бұрын
can you plz explain me how do you disable checkbox from List view..?
@pedroprada1
@pedroprada1 Жыл бұрын
I finally started to prepare for the Integration Architect certification and coming back here... (bookmarked a long tima ago)... I see its 34 videos this series..... is this correct? does it still align with the Certification training? Thanks again!
@SalesforceCodex
@SalesforceCodex Жыл бұрын
Yes, It will cover almost all modules
@refiloemalekela5890
@refiloemalekela5890 Жыл бұрын
You are such a good teacher.
@jabeenakkalkot7709
@jabeenakkalkot7709 Жыл бұрын
Can you please make a tutorial of the same using open api 2.0 spec as external system.
@TaniyaDhiman-zo6vh
@TaniyaDhiman-zo6vh Жыл бұрын
very well explained sir Thank you so Much
@SalesforceCodex
@SalesforceCodex Жыл бұрын
Thank You Taniya
@vksingh13
@vksingh13 Жыл бұрын
very good explaination !
@SalesforceCodex
@SalesforceCodex Жыл бұрын
Thank You Vaibhav
@ArchiveOn_Coud-
@ArchiveOn_Coud- Жыл бұрын
Thank you so much for sharing the video
@davishandler4503
@davishandler4503 Жыл бұрын
Great session, but audio is not great.
@venkateshnalagandla
@venkateshnalagandla Жыл бұрын
Developer org & sandbox side enabled the API and SALESFORCE to SALESFORCE also enabled but I am getting the same issue again and again. Salesforce to Salesforce: Partner org is not active and no API calls are allowed. The partner org is not active and no api operations are permitted Can I know why???
@saipooja7252
@saipooja7252 Жыл бұрын
Can we achieve call to case like whenever we recieve a call automatically case should be created ?
@ademirjarovic8985
@ademirjarovic8985 3 ай бұрын
yes you can
@sushmamaurya5083
@sushmamaurya5083 Жыл бұрын
This is very good session. I am following your all sessions. Keep up the good work. Thanks. Can we create custom REST API in .NET or Java and convert as OpenAPI specification then consume into SF as external service ?
@mihirkkk4268
@mihirkkk4268 Жыл бұрын
superlative session dear.clear confusion of name credential and auth provider
@sushmamaurya5083
@sushmamaurya5083 Жыл бұрын
28:30 if my website name is not listed in provider type then do I need to create Auth. Provider ?
@saibabapokala
@saibabapokala Жыл бұрын
Just wondering when we use Odata does the external objects physically stores the data in it?
@saibabapokala
@saibabapokala Жыл бұрын
This is really amazing
@venkateshkulkarni4427
@venkateshkulkarni4427 Жыл бұрын
How to get the scope value in the named credentials in apex?
@parnabasu7302
@parnabasu7302 Жыл бұрын
Could you show on how to configure manage connections and Manage Queue part. Also how come connection user is showing on the case records like how the user is configured and mapped to S2S integration
@abhishekmishra1986
@abhishekmishra1986 2 жыл бұрын
Thanks sir
@abhishekmishra1986
@abhishekmishra1986 2 жыл бұрын
Hello sir can you please share the code
@SalesforceCodex
@SalesforceCodex 2 жыл бұрын
Hello Abhishek, You can check our blog post salesforcecodex.com/salesforce/schedule-email-alerts-based-on-business-hours/ for this.
@sravanireddy3001
@sravanireddy3001 2 жыл бұрын
How secure is this platform event , anyone can subscribe and get the information right
@cnk8766
@cnk8766 2 жыл бұрын
My question is how these changes reach external system? Do we need to send the change info to external system using streaming API from changeEvent trigger?
@sudhanshu02raj
@sudhanshu02raj 2 жыл бұрын
how to get that packages?
@SalesforceCodex
@SalesforceCodex 2 жыл бұрын
Hello Sudhanshu, You can get it from the Twilio site.
@biswajitsamantaray380
@biswajitsamantaray380 2 жыл бұрын
You are confusing greatly with the words 'Identity Provider' and 'Service Provider'.