salesforce-service-cloud

How to get SMS request via twilio

Deadly 提交于 2019-12-24 23:06:52
问题 I have a class that can access the site url in the salesforce. The site url "https://somesalesforce.com/smsToApex" and same as the twilio account sms URL but this class can't called. I have reference this document.The twilio SMS url correct are not how to check?The Twilio account SMS url and salesforce site url are same as of now.Whenever SMS is came via twilio then automatically Case is createin the sandbox.But here not happened.I doing correct producer are not?.Can someone please help me

upload a file to salesforce using connector

断了今生、忘了曾经 提交于 2019-12-08 11:22:20
问题 i builded a flow in mule which create a case in Salesforce using 'Salesforce' connector. now i need to upload a file to that case using the same mule flow. This can be done programatically by the following code: try { File f = new File("c:\java\test.docx"); InputStream is = new FileInputStream(f); byte[] inbuff = new byte[(int)f.length()]; is.read(inbuff); Attachment attach = new Attachment(); attach.setBody(inbuff); attach.setName("test.docx"); attach.setIsPrivate(false); // attach to an

How to make Chrome Extension run for each new Iframe added?

∥☆過路亽.° 提交于 2019-12-06 08:18:28
问题 I created a Chrome Extension as a solution to override the helpText bubbles in SalesForce Console pages. The helpText bubbles show up the text without the ability to link URLs. It looks like this: The extension is taking the helpText bubble (which in the SalesForce console window, is inside an iFrame) and makes the URL click-able. It also adds word wrap and marks the links in blue. The solution works fine when the page loads with the initial iFrame (or iFrames) on it, meaning when you open

How to make Chrome Extension run for each new Iframe added?

我的未来我决定 提交于 2019-12-04 13:00:59
I created a Chrome Extension as a solution to override the helpText bubbles in SalesForce Console pages. The helpText bubbles show up the text without the ability to link URLs. It looks like this: The extension is taking the helpText bubble (which in the SalesForce console window, is inside an iFrame) and makes the URL click-able. It also adds word wrap and marks the links in blue. The solution works fine when the page loads with the initial iFrame (or iFrames) on it, meaning when you open the SalesForce console the first time ( https://eu3.salesforce.com/console ). When a new tab is created