Salesforce Sandbox Accounts

It’s possible to connect WP Fusion to a Salesforce sandbox account for testing purposes. To do so you’ll need to add a filter to your theme’s functions.php file to override the authentication URL:

function salesforce_auth_url( $url ) {

	return 'https://test.salesforce.com/services/oauth2/token';

}

add_filter( 'wpf_salesforce_auth_url', 'salesforce_auth_url' );

Then enter the credentials for your sandbox user into the main WP Fusion setup tab, and click Test Connection to establish a connection to Salesforce.

For more information about user credentials with Salesforce sandboxes please see https://help.salesforce.com/articleView?id=data_sandbox_create.htm&type=5.

Was this helpful?