Created
April 1, 2015 08:08
-
-
Save contensis/99fe46c1f301c50aff1d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Read these settings from a configuration file in production | |
private const string SalesForceApiUrl = "[INSERT_URL_TO_SALESFORCE_API_OAUTH]"; | |
private const string SecurityToken = "[INSERT_SECURITY_TOKEN]"; | |
private const string ClientKey = "[INSERT_CLIENT_KEY]"; | |
private const string ClientSecret = "[INSERT_CLIENT_SECRET]"; | |
private const string Username = "[INSERT_USER_NAME]"; | |
private const string Password = "[INSERT_PASSWORD]" + SecurityToken; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment