Salesforce Integration with Dropbox | The Ultimate Guide
Following are the steps to Integrate Salesforce with Dropbox:
- Click AppLauncher and visit AppExchange, search for Dropbox for Salesforce, and click Get it now, Install it for All users.
- Click on Setup, go to Installed Packages, and click on Configure link on Dropbox for the Salesforce tab, It shows a popup for adding a Dropbox widget on the page layout for standard objects, Click Update Layouts.
- Salesforce Integration with Dropbox is done for standard objects now go to any object click the Related tab and It has a Dropbox widget at the last. Click on Login with Dropbox, A popup appears for instructions. Click continue.
- After clicking continue a new pop-up appears for API authorization, Click continue and It verifies your Salesforce org account.
- Files can be uploaded on these objects by clicking Add Files button.
Don't forget to check out: Rev Up Your Business With Top 10 Free Apps On Salesforce AppExchange
Use Custom Objects or Standard Objects beyond default Configuration
To use custom objects or objects outside of those included in the default configuration (Account, Contact, Case, Opportunity, Lead), follow these instructions:
1. Sign in to the Salesforce website.
2. Open the gear icon, and click Setup.
3. Under the Platform Tools section, click Custom Code.
4. Click Visualforce Pages.
5. In the list of pages, click New.
Add a Label and Name for your Visualforce Page
Replace the Visualforce markup with the code below. The value for standardController will need to be replaced with the object API name For a standard object, the API name is the name as the standard object. For example, the "Contracts" object API name is "Contract".
Dropbox for [Object]
<apex:page standardController="INSERT—API—NAME—HERE" docType="html-5.0" showHeader="false" sidebar="false" applyHtmlTag="false" applyBodyTag="false"> <Dropbox_for_SF:Dropbox /> </apex:page>
Also, We need to set up a new object trigger for either your custom or non-default standard object.
Check out another amazing blog by Kapil here: Communicate across the DOM | All You Need to Know
Now go to Object settings and customize the page layout settings and add the Visualforce page in a new section, the dropbox widget will appear on the object page.
Responses