From 2e73af68a2ce966882c8247cd3629520e0e29684 Mon Sep 17 00:00:00 2001 From: Wade Wegner Date: Mon, 10 Jun 2019 11:10:42 -0700 Subject: [PATCH] Update Startup.Auth.Salesforce.cs --- src/Web/App_Start/Startup.Auth.Salesforce.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Web/App_Start/Startup.Auth.Salesforce.cs b/src/Web/App_Start/Startup.Auth.Salesforce.cs index f93a724..fa5fc75 100644 --- a/src/Web/App_Start/Startup.Auth.Salesforce.cs +++ b/src/Web/App_Start/Startup.Auth.Salesforce.cs @@ -22,8 +22,8 @@ namespace Web "https://login.salesforce.com/services/oauth2/authorize", TokenEndpoint = "https://login.salesforce.com/services/oauth2/token", }, - ClientId = "3MVG9JZ_r.QzrS7izXVWrETc3vyjzE2_4D8cVFZMzoNiravzQUQAasuoDynfkqc5yJvlfE7shOtkQm4FeZJjg", - ClientSecret = "7476749690614642061", + ClientId = "YOUR_CLIENT_ID", + ClientSecret = "YOUR_CLIENT_SECRET", Provider = new SalesforceAuthenticationProvider() { // TODO: 1. Add this to temporarily store the access token @@ -36,4 +36,4 @@ namespace Web }); } } -} \ No newline at end of file +}