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 +}