Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save contensis/99fe46c1f301c50aff1d to your computer and use it in GitHub Desktop.
Save contensis/99fe46c1f301c50aff1d to your computer and use it in GitHub Desktop.
// 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